/* Minify_CSS_UriRewriter::$debugText

*/

/* styles.css */

/* 1   */ .wpcf7 .screen-reader-response {
/* 2   */ 	position: absolute;
/* 3   */ 	overflow: hidden;
/* 4   */ 	clip: rect(1px, 1px, 1px, 1px);
/* 5   */ 	clip-path: inset(50%);
/* 6   */ 	height: 1px;
/* 7   */ 	width: 1px;
/* 8   */ 	margin: -1px;
/* 9   */ 	padding: 0;
/* 10  */ 	border: 0;
/* 11  */ 	word-wrap: normal !important;
/* 12  */ }
/* 13  */
/* 14  */ .wpcf7 form .wpcf7-response-output {
/* 15  */ 	margin: 2em 0.5em 1em;
/* 16  */ 	padding: 0.2em 1em;
/* 17  */ 	border: 2px solid #00a0d2; /* Blue */
/* 18  */ }
/* 19  */
/* 20  */ .wpcf7 form.init .wpcf7-response-output,
/* 21  */ .wpcf7 form.resetting .wpcf7-response-output,
/* 22  */ .wpcf7 form.submitting .wpcf7-response-output {
/* 23  */ 	display: none;
/* 24  */ }
/* 25  */
/* 26  */ .wpcf7 form.sent .wpcf7-response-output {
/* 27  */ 	border-color: #46b450; /* Green */
/* 28  */ }
/* 29  */
/* 30  */ .wpcf7 form.failed .wpcf7-response-output,
/* 31  */ .wpcf7 form.aborted .wpcf7-response-output {
/* 32  */ 	border-color: #dc3232; /* Red */
/* 33  */ }
/* 34  */
/* 35  */ .wpcf7 form.spam .wpcf7-response-output {
/* 36  */ 	border-color: #f56e28; /* Orange */
/* 37  */ }
/* 38  */
/* 39  */ .wpcf7 form.invalid .wpcf7-response-output,
/* 40  */ .wpcf7 form.unaccepted .wpcf7-response-output,
/* 41  */ .wpcf7 form.payment-required .wpcf7-response-output {
/* 42  */ 	border-color: #ffb900; /* Yellow */
/* 43  */ }
/* 44  */
/* 45  */ .wpcf7-form-control-wrap {
/* 46  */ 	position: relative;
/* 47  */ }
/* 48  */
/* 49  */ .wpcf7-not-valid-tip {
/* 50  */ 	color: #dc3232; /* Red */

/* styles.css */

/* 51  */ 	font-size: 1em;
/* 52  */ 	font-weight: normal;
/* 53  */ 	display: block;
/* 54  */ }
/* 55  */
/* 56  */ .use-floating-validation-tip .wpcf7-not-valid-tip {
/* 57  */ 	position: relative;
/* 58  */ 	top: -2ex;
/* 59  */ 	left: 1em;
/* 60  */ 	z-index: 100;
/* 61  */ 	border: 1px solid #dc3232;
/* 62  */ 	background: #fff;
/* 63  */ 	padding: .2em .8em;
/* 64  */ 	width: 24em;
/* 65  */ }
/* 66  */
/* 67  */ .wpcf7-list-item {
/* 68  */ 	display: inline-block;
/* 69  */ 	margin: 0 0 0 1em;
/* 70  */ }
/* 71  */
/* 72  */ .wpcf7-list-item-label::before,
/* 73  */ .wpcf7-list-item-label::after {
/* 74  */ 	content: " ";
/* 75  */ }
/* 76  */
/* 77  */ .wpcf7-spinner {
/* 78  */ 	visibility: hidden;
/* 79  */ 	display: inline-block;
/* 80  */ 	background-color: #23282d; /* Dark Gray 800 */
/* 81  */ 	opacity: 0.75;
/* 82  */ 	width: 24px;
/* 83  */ 	height: 24px;
/* 84  */ 	border: none;
/* 85  */ 	border-radius: 100%;
/* 86  */ 	padding: 0;
/* 87  */ 	margin: 0 24px;
/* 88  */ 	position: relative;
/* 89  */ }
/* 90  */
/* 91  */ form.submitting .wpcf7-spinner {
/* 92  */ 	visibility: visible;
/* 93  */ }
/* 94  */
/* 95  */ .wpcf7-spinner::before {
/* 96  */ 	content: '';
/* 97  */ 	position: absolute;
/* 98  */ 	background-color: #fbfbfc; /* Light Gray 100 */
/* 99  */ 	top: 4px;
/* 100 */ 	left: 4px;

/* styles.css */

/* 101 */ 	width: 6px;
/* 102 */ 	height: 6px;
/* 103 */ 	border: none;
/* 104 */ 	border-radius: 100%;
/* 105 */ 	transform-origin: 8px 8px;
/* 106 */ 	animation-name: spin;
/* 107 */ 	animation-duration: 1000ms;
/* 108 */ 	animation-timing-function: linear;
/* 109 */ 	animation-iteration-count: infinite;
/* 110 */ }
/* 111 */
/* 112 */ @media (prefers-reduced-motion: reduce) {
/* 113 */ 	.wpcf7-spinner::before {
/* 114 */ 		animation-name: blink;
/* 115 */ 		animation-duration: 2000ms;
/* 116 */ 	}
/* 117 */ }
/* 118 */
/* 119 */ @keyframes spin {
/* 120 */ 	from {
/* 121 */ 		transform: rotate(0deg);
/* 122 */ 	}
/* 123 */
/* 124 */ 	to {
/* 125 */ 		transform: rotate(360deg);
/* 126 */ 	}
/* 127 */ }
/* 128 */
/* 129 */ @keyframes blink {
/* 130 */ 	from {
/* 131 */ 		opacity: 0;
/* 132 */ 	}
/* 133 */
/* 134 */ 	50% {
/* 135 */ 		opacity: 1;
/* 136 */ 	}
/* 137 */
/* 138 */ 	to {
/* 139 */ 		opacity: 0;
/* 140 */ 	}
/* 141 */ }
/* 142 */
/* 143 */ .wpcf7 [inert] {
/* 144 */ 	opacity: 0.5;
/* 145 */ }
/* 146 */
/* 147 */ .wpcf7 input[type="file"] {
/* 148 */ 	cursor: pointer;
/* 149 */ }
/* 150 */

/* styles.css */

/* 151 */ .wpcf7 input[type="file"]:disabled {
/* 152 */ 	cursor: default;
/* 153 */ }
/* 154 */
/* 155 */ .wpcf7 .wpcf7-submit:disabled {
/* 156 */ 	cursor: not-allowed;
/* 157 */ }
/* 158 */
/* 159 */ .wpcf7 input[type="url"],
/* 160 */ .wpcf7 input[type="email"],
/* 161 */ .wpcf7 input[type="tel"] {
/* 162 */ 	direction: ltr;
/* 163 */ }
/* 164 */
/* 165 */ .wpcf7-reflection > output {
/* 166 */ 	display: list-item;
/* 167 */ 	list-style: none;
/* 168 */ }
/* 169 */
/* 170 */ .wpcf7-reflection > output[hidden] {
/* 171 */ 	display: none;
/* 172 */ }
/* 173 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* front.min.css */

/* 1 */ #cookie-notice,#cookie-notice .cn-button:not(.cn-button-custom){font-family:-apple-system,BlinkMacSystemFont,Arial,Roboto,"Helvetica Neue",sans-serif;font-weight:400;font-size:13px;text-align:center}#cookie-notice{position:fixed;min-width:100%;height:auto;z-index:100000;letter-spacing:0;line-height:20px;left:0}#cookie-notice,#cookie-notice *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#cookie-notice.cn-animated{-webkit-animation-duration:.5s!important;animation-duration:.5s!important;-webkit-animation-fill-mode:both;animation-fill-mode:both}#cookie-notice.cn-animated.cn-effect-none{-webkit-animation-duration:1ms!important;animation-duration:1ms!important}#cookie-notice .cookie-notice-container,#cookie-notice .cookie-revoke-container{display:block}#cookie-notice.cookie-notice-hidden .cookie-notice-container,#cookie-notice.cookie-revoke-hidden .cookie-revoke-container{display:none}.cn-position-top{top:0}.cn-position-bottom{bottom:0}.cookie-notice-container{padding:15px 30px;text-align:center;width:100%;z-index:2}.cookie-revoke-container{padding:15px 30px;width:100%;z-index:1}.cn-close-icon{position:absolute;right:15px;top:50%;margin-top:-10px;width:15px;height:15px;opacity:.5;padding:10px;outline:0;cursor:pointer}.cn-close-icon:hover{opacity:1}.cn-close-icon:after,.cn-close-icon:before{position:absolute;content:' ';height:15px;width:2px;top:3px;background-color:grey}.cn-close-icon:before{transform:rotate(45deg)}.cn-close-icon:after{transform:rotate(-45deg)}#cookie-notice .cn-revoke-cookie{margin:0}#cookie-notice .cn-button{margin:0 0 0 10px;display:inline-block}#cookie-notice .cn-button:not(.cn-button-custom){letter-spacing:.25px;margin:0 0 0 10px;text-transform:none;display:inline-block;cursor:pointer;touch-action:manipulation;white-space:nowrap;outline:0;box-shadow:none;text-shadow:none;border:none;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;text-decoration:none;padding:8.5px 10px;line-height:1;color:inherit}.cn-text-container{margin:0 0 6px}.cn-buttons-container,.cn-text-container{display:inline-block}#cookie-notice.cookie-notice-visible.cn-effect-fade,#cookie-notice.cookie-notice-visible.cn-effect-none,#cookie-notice.cookie-revoke-visible.cn-effect-fade,#cookie-notice.cookie-revoke-visible.cn-effect-none{-webkit-animation-name:fadeIn;animation-name:fadeIn}#cookie-notice.cn-effect-fade,#cookie-notice.cn-effect-none{-webkit-animation-name:fadeOut;animation-name:fadeOut}#cookie-notice.cookie-notice-visible.cn-effect-slide,#cookie-notice.cookie-revoke-visible.cn-effect-slide{-webkit-animation-name:slideInUp;animation-name:slideInUp}#cookie-notice.cn-effect-slide{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}#cookie-notice.cookie-notice-visible.cn-position-top.cn-effect-slide,#cookie-notice.cookie-revoke-visible.cn-position-top.cn-effect-slide{-webkit-animation-name:slideInDown;animation-name:slideInDown}#cookie-notice.cn-position-top.cn-effect-slide{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes fadeOut{from{opacity:1}to{opacity:0}}@keyframes fadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@-webkit-keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@media all and (max-width:900px){.cookie-notice-container #cn-notice-buttons,.cookie-notice-container #cn-notice-text{display:block}#cookie-notice .cn-button{margin:0 5px 5px}}@media all and (max-width:480px){.cookie-notice-container,.cookie-revoke-container{padding:15px 25px}}
/* Minify_CSS_UriRewriter::$debugText

*/

/* wpdm-icons.css */

/* 1  */ @font-face {
/* 2  */   font-family: 'wpdm-icons';
/* 3  */   src: url('../font/wpdm-icons.eot?9713993');
/* 4  */   src: url('../font/wpdm-icons.eot?9713993#iefix') format('embedded-opentype'),
/* 5  */        url('../font/wpdm-icons.woff2?9713993') format('woff2'),
/* 6  */        url('../font/wpdm-icons.woff?9713993') format('woff'),
/* 7  */        url('../font/wpdm-icons.ttf?9713993') format('truetype'),
/* 8  */        url('../font/wpdm-icons.svg?9713993#wpdm-icons') format('svg');
/* 9  */   font-weight: normal;
/* 10 */   font-style: normal;
/* 11 */ }
/* 12 */ /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* 13 */ /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/* 14 */ /*
/* 15 *| @media screen and (-webkit-min-device-pixel-ratio:0) {
/* 16 *|   @font-face {
/* 17 *|     font-family: 'wpdm-icons';
/* 18 *|     src: url('../font/wpdm-icons.svg?9713993#wpdm-icons') format('svg');
/* 19 *|   }
/* 20 *| }
/* 21 *| */
/* 22 */ [class^="wpdm-"]:before, [class*=" wpdm-"]:before {
/* 23 */   font-family: "wpdm-icons";
/* 24 */   font-style: normal;
/* 25 */   font-weight: normal;
/* 26 */   speak: never;
/* 27 */
/* 28 */   display: inline-block;
/* 29 */   text-decoration: inherit;
/* 30 */   width: 1em;
/* 31 */   margin-right: .2em;
/* 32 */   text-align: center;
/* 33 */   /* opacity: .8; */
/* 34 */
/* 35 */   /* For safety - reset parent styles, that can break glyph codes*/
/* 36 */   font-variant: normal;
/* 37 */   text-transform: none;
/* 38 */
/* 39 */   /* fix buttons height, for twitter bootstrap */
/* 40 */   line-height: 1em;
/* 41 */
/* 42 */   /* Animation center compensation - margins should be symmetric */
/* 43 */   /* remove if not needed */
/* 44 */   margin-left: .2em;
/* 45 */
/* 46 */   /* you can be more comfortable with increased icons size */
/* 47 */   /* font-size: 120%; */
/* 48 */
/* 49 */   /* Font smoothing. That was taken from TWBS */
/* 50 */   -webkit-font-smoothing: antialiased;

/* wpdm-icons.css */

/* 51 */   -moz-osx-font-smoothing: grayscale;
/* 52 */
/* 53 */   /* Uncomment for 3D effect */
/* 54 */   /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
/* 55 */ }
/* 56 */
/* 57 */ .wpdm-shopping-cart:before { content: '\e800'; }
/* 58 */ .wpdm-circle-notch:before { content: '\e801'; }
/* 59 */ .wpdm-spinner:before { content: '\e802'; }
/* 60 */ .wpdm-sun:before { content: '\e803'; }
/* 61 */ .wpdm-edit:before { content: '\e804'; }
/* 62 */ .wpdm-eye:before { content: '\e805'; }
/* 63 */ .wpdm-share:before { content: '\e806'; }
/* 64 */ .wpdm-trash:before { content: '\e807'; }
/* 65 */ .wpdm-hdd:before { content: '\e808'; }
/* 66 */ .wpdm-layer-group:before { content: '\e809'; } /* '' */
/* 67 */ .wpdm-paper-plane:before { content: '\e80a'; } /* '' */
/* 68 */ .wpdm-arrow-down:before { content: '\e80b'; } /* '' */
/* 69 */ .wpdm-chat:before { content: '\e80c'; } /* '' */
/* 70 */ .wpdm-file-arrow-down:before { content: '\e80e'; } /* '' */
/* 71 */ .wpdm-pause:before { content: '\e812'; } /* '' */
/* 72 */ .wpdm-play:before { content: '\e813'; } /* '' */
/* 73 */ .wpdm-stop:before { content: '\e815'; } /* '' */
/* 74 */ .wpdm-user:before { content: '\e817'; } /* '' */
/* 75 */ .wpdm-cart-arrow-down:before { content: '\e818'; } /* '' */
/* 76 */ .wpdm-credit-card:before { content: '\e819'; } /* '' */
/* 77 */ .wpdm-parachute-box:before { content: '\e81a'; } /* '' */
/* 78 */ .wpdm-crown:before { content: '\e81b'; } /* '' */
/* 79 */ .wpdm-logout:before { content: '\e81c'; } /* '' */
/* 80 */ .wpdm-user-edit:before { content: '\e81d'; } /* '' */
/* 81 */ .wpdm-circle-down:before { content: '\e81e'; } /* '' */
/* 82 */ .wpdm-envelope-open:before { content: '\f2b6'; } /* '' */
/* 83 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* front.min.css */

/* 1 */ @keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1}}@keyframes spin{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-ms-transform:rotate(359deg);transform:rotate(359deg)}}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg);transform:rotate(0deg)}to{-moz-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg);transform:rotate(0deg)}to{-ms-transform:rotate(359deg);transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg);transform:rotate(0deg)}to{-o-transform:rotate(359deg);transform:rotate(359deg)}}:root{--font-size-lg:16px;--font-size-sm:12px;--border-radius-regular:3px;--border-radius-sm:2px;--padding-regular:6px 15px}.w3eden *,.w3eden ::after,.w3eden ::before{box-sizing:border-box}.w3eden html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}.w3eden body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:10pt;font-weight:400;line-height:1.5;color:#212529;background-color:#fff}.w3eden [tabindex="-1"]:focus{outline:0!important}.w3eden hr{box-sizing:content-box;height:0;overflow:visible;margin-top:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.w3eden h1,.w3eden h2,.w3eden h3,.w3eden h4,.w3eden h5,.w3eden h6,.w3eden p,.w3eden td .wpdm_cart_form{margin-top:0}.w3eden hr,.w3eden p{margin-bottom:1rem}.w3eden b,.w3eden strong{font-weight:bolder}.w3eden a:not([href]):not([tabindex]),.w3eden a:not([href]):not([tabindex]):focus,.w3eden a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}.w3eden a:not([href]):not([tabindex]):focus{outline:0}.w3eden table{border-collapse:collapse}.w3eden caption{padding-top:.75rem;padding-bottom:.75rem;color:var(--clr-sec);text-align:left;caption-side:bottom}.w3eden label{display:inline-block;margin-bottom:.5rem}.w3eden button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}.w3eden button,.w3eden input,.w3eden optgroup,.w3eden select,.w3eden textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}.w3eden button,.w3eden input{overflow:visible}.w3eden button,.w3eden select{text-transform:none}.w3eden select{word-wrap:normal}.w3eden [type=button],.w3eden [type=reset],.w3eden [type=submit],.w3eden button{appearance:button;-webkit-appearance:button}.c-pointer,.w3eden [type=button]:not(:disabled),.w3eden [type=reset]:not(:disabled),.w3eden [type=submit]:not(:disabled),.w3eden button:not(:disabled),.w3eden i.fa[rel=del],.w3eden i.fa[rel=undo],.w3eden label{cursor:pointer}.w3eden [type=button]::-moz-focus-inner,.w3eden [type=reset]::-moz-focus-inner,.w3eden [type=submit]::-moz-focus-inner,.w3eden button::-moz-focus-inner{padding:0;border-style:none}.w3eden input[type=checkbox],.w3eden input[type=radio]{box-sizing:border-box;padding:0}.w3eden input[type=date],.w3eden input[type=datetime-local],.w3eden input[type=month],.w3eden input[type=time]{appearance:listbox;-webkit-appearance:listbox}.w3eden textarea{overflow:auto;resize:vertical}.w3eden [type=number]::-webkit-inner-spin-button,.w3eden [type=number]::-webkit-outer-spin-button{height:auto}.w3eden [type=search]{outline-offset:-2px;appearance:none;-webkit-appearance:none}.w3eden [type=search]::-webkit-search-decoration{-webkit-appearance:none}.w3eden ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}.w3eden summary{display:list-item}.w3eden h1,.w3eden h2,.w3eden h3,.w3eden h4,.w3eden h5,.w3eden h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.w3eden h1{font-size:2.5rem}.w3eden h2{font-size:2rem}.w3eden h3{font-size:1.75rem}.w3eden h4{font-size:1.5rem}.w3eden .lead,.w3eden h5{font-size:var(--font-size-lg)}.w3eden h6{font-size:1rem}.w3eden .lead{font-weight:300}.text-small,.w3eden small{font-size:80%;font-weight:400}.w3eden .list-inline,.w3eden .list-unstyled{padding-left:0;list-style:none}.w3eden .list-inline-item{display:inline-block}.w3eden .list-inline-item:not(:last-child){margin-right:.5rem}.w3eden .img-fluid{max-width:100%;height:auto}.w3eden mark{padding:.2em;background-color:#fcf8e3}.w3eden code{font-size:87.5%;color:#e83e8c;word-break:break-word}.w3eden a>code{color:inherit}.w3eden kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:var(--border-radius-sm)}.w3eden kbd kbd{padding:0;font-size:100%;font-weight:700}.w3eden .container,.w3eden .container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.w3eden .container{max-width:540px}}@media (min-width:768px){.w3eden .container{max-width:720px}}@media (min-width:992px){.w3eden .container{max-width:960px}}@media (min-width:1200px){.w3eden .container{max-width:1140px}}.w3eden .row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.w3eden [class*=col-]{position:relative;width:100%;padding-right:15px;padding-left:15px}@media (min-width:576px){.w3eden .col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.w3eden .col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.w3eden .col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.w3eden .col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media (min-width:768px){.w3eden .col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.w3eden .col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.w3eden .col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.w3eden .col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.w3eden .col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.w3eden .col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.w3eden .col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.w3eden .col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.w3eden .col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.w3eden .col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.w3eden .col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media (min-width:992px){.w3eden .col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.w3eden .col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.w3eden .col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.w3eden .col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.w3eden .col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.w3eden .col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.w3eden .col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.w3eden .col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.w3eden .col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.w3eden .col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.w3eden .col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}.w3eden .table{width:100%;margin-bottom:1rem;border:0;color:#212529}.w3eden .table td,.w3eden .table th{padding:.75rem;vertical-align:middle}.w3eden .table thead th{vertical-align:bottom;border:0;border-bottom:1px solid #dee2e6}.w3eden .table tbody+tbody,.w3eden .table td,.w3eden .table th{border:0;border-top:1px solid #dee2e6}.w3eden .table-bordered,.w3eden .table-bordered td,.w3eden .table-bordered th{border:1px solid #dee2e6}.w3eden .table-bordered thead td,.w3eden .table-bordered thead th{border-bottom-width:2px}.w3eden .form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:var(--padding-regular);font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:var(--border-radius-regular);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.w3eden .form-control::-ms-expand{background-color:transparent;border:0}.w3eden .form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.w3eden .form-control::-webkit-input-placeholder{color:var(--clr-sec);opacity:1}.w3eden .form-control::-moz-placeholder{color:var(--clr-sec);opacity:1}.w3eden .form-control:-ms-input-placeholder{color:var(--clr-sec);opacity:1}.w3eden .form-control::-ms-input-placeholder{color:var(--clr-sec);opacity:1}.w3eden .form-control::placeholder{color:var(--clr-sec);opacity:1}.w3eden .form-control:disabled,.w3eden .form-control[readonly]{background-color:#e9ecef;opacity:1}.w3eden select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.w3eden .form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:var(--font-size-lg);line-height:1.5;border-radius:.3rem}.w3eden select.form-control[multiple],.w3eden select.form-control[size],.w3eden textarea.form-control{height:auto}.w3eden .form-group{margin-bottom:1rem}.w3eden .form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.w3eden .btn{display:inline-block;font-weight:600;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;padding:var(--padding-regular);font-size:10pt;line-height:1.8;border-radius:var(--border-radius-regular);transition:all ease-in-out 300ms;border:0}.w3eden .card.text-white,.w3eden .card.text-white *,.w3eden [class*="badge badge-"],.w3eden [class*="btn btn-"]{color:#fff}.w3eden .btn.focus,.w3eden .btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.w3eden .btn-primary{background-color:var(--color-primary);border-color:var(--color-primary)}.w3eden .btn-primary:hover{background-color:var(--color-primary-hover);box-shadow:0 3px 8px 0 rgba(var(--color-primary-rgb),.4)}.w3eden .btn-primary.focus,.w3eden .btn-primary:focus{box-shadow:0 3px 8px 0 rgba(var(--color-primary-rgb),.5)}.w3eden .btn-primary.disabled,.w3eden .btn-primary:disabled{background-color:var(--color-primary)}.w3eden .btn-primary:not(:disabled):not(.disabled).active,.w3eden .btn-primary:not(:disabled):not(.disabled):active,.w3eden .show>.btn-primary.dropdown-toggle{background-color:var(--color-primary-active)}.w3eden .btn-primary:not(:disabled):not(.disabled).active:focus,.w3eden .btn-primary:not(:disabled):not(.disabled):active:focus,.w3eden .show>.btn-primary.dropdown-toggle:focus{box-shadow:0 3px 8px 0 rgba(var(--color-primary-rgb),.4)}.w3eden .btn-secondary{background-color:var(--clr-sec)}.w3eden .btn-secondary:hover{background-color:var(--clr-sec-hover)}.w3eden .btn-secondary.focus,.w3eden .btn-secondary:focus{box-shadow:0 3px 8px 0 rgba(var(--clr-sec-rgb),.4)}.w3eden .btn-secondary.disabled,.w3eden .btn-secondary:disabled{background-color:var(--clr-sec)}.w3eden .btn-secondary:not(:disabled):not(.disabled).active,.w3eden .btn-secondary:not(:disabled):not(.disabled):active,.w3eden .show>.btn-secondary.dropdown-toggle{background-color:var(--clr-sec-active)}.w3eden .btn-secondary:not(:disabled):not(.disabled).active:focus,.w3eden .btn-secondary:not(:disabled):not(.disabled):active:focus,.w3eden .show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 3px 8px 0 rgba(var(--clr-sec-rgb),.4)}.w3eden .badge-success,.w3eden .btn-success,.w3eden .btn-success.disabled,.w3eden .btn-success:disabled{background-color:var(--color-success)}.w3eden .btn-success:hover{background-color:var(--color-success-hover);box-shadow:0 3px 8px 0 rgba(var(--color-success-rgb),.4)}.w3eden .btn-success.focus,.w3eden .btn-success:focus{box-shadow:0 3px 8px 0 rgba(var(--color-success-rgb),.4)}.w3eden .btn-success:not(:disabled):not(.disabled).active,.w3eden .btn-success:not(:disabled):not(.disabled):active,.w3eden .show>.btn-success.dropdown-toggle{background-color:var(--color-success-active)}.w3eden .btn-success:not(:disabled):not(.disabled).active:focus,.w3eden .btn-success:not(:disabled):not(.disabled):active:focus,.w3eden .show>.btn-success.dropdown-toggle:focus{box-shadow:0 3px 8px 0 rgba(var(--color-success-rgb),.4)}.w3eden .btn-info{background-color:var(--color-info)}.w3eden .btn-info:hover{background-color:var(--color-info-hover);box-shadow:0 3px 8px 0 rgba(var(--color-info-rgb),.4)}.w3eden .btn-info.focus,.w3eden .btn-info:focus{box-shadow:0 3px 8px 0 rgba(var(--color-info-rgb),.4)}.w3eden .btn-info.disabled,.w3eden .btn-info:disabled{background-color:var(--color-info)}.w3eden .btn-info:not(:disabled):not(.disabled).active,.w3eden .btn-info:not(:disabled):not(.disabled):active,.w3eden .show>.btn-info.dropdown-toggle{background-color:var(--color-info-active)}.w3eden .btn-info:not(:disabled):not(.disabled).active:focus,.w3eden .btn-info:not(:disabled):not(.disabled):active:focus,.w3eden .show>.btn-info.dropdown-toggle:focus{box-shadow:0 3px 8px 0 rgba(var(--color-info-rgb),.4)}.w3eden .btn-warning{color:#212529;background-color:var(--color-warning)}.w3eden .btn-warning:hover{color:#212529;background-color:#e0a800}.w3eden .btn-warning.focus,.w3eden .btn-warning:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.w3eden .btn-warning.disabled,.w3eden .btn-warning:disabled{color:#212529;background-color:var(--color-warning)}.w3eden .btn-warning:not(:disabled):not(.disabled).active,.w3eden .btn-warning:not(:disabled):not(.disabled):active,.w3eden .show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00}.w3eden .btn-warning:not(:disabled):not(.disabled).active:focus,.w3eden .btn-warning:not(:disabled):not(.disabled):active:focus,.w3eden .show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.w3eden .btn-danger{background-color:var(--color-danger)}.w3eden .btn-danger:hover{background-color:#c82333}.w3eden .btn-danger.focus,.w3eden .btn-danger:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.w3eden .btn-danger.disabled,.w3eden .btn-danger:disabled{background-color:var(--color-danger)}.w3eden .btn-danger:not(:disabled):not(.disabled).active,.w3eden .btn-danger:not(:disabled):not(.disabled):active,.w3eden .show>.btn-danger.dropdown-toggle{background-color:#bd2130}.w3eden .btn-danger:not(:disabled):not(.disabled).active:focus,.w3eden .btn-danger:not(:disabled):not(.disabled):active:focus,.w3eden .show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.w3eden .btn-light{color:#212529;background-color:#f8f9fa}.w3eden .btn-light:hover{color:#212529;background-color:#e2e6ea}.w3eden .btn-light.focus,.w3eden .btn-light:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.w3eden .btn-light.disabled,.w3eden .btn-light:disabled{color:#212529;background-color:#f8f9fa}.w3eden .btn-light:not(:disabled):not(.disabled).active,.w3eden .btn-light:not(:disabled):not(.disabled):active,.w3eden .show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5}.w3eden .btn-light:not(:disabled):not(.disabled).active:focus,.w3eden .btn-light:not(:disabled):not(.disabled):active:focus,.w3eden .show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.w3eden .btn-link{font-weight:400;color:var(--color-primary);text-decoration:none}.w3eden .btn-link:hover{color:var(--color-primary-hover);text-decoration:underline}.w3eden .btn-link.focus,.w3eden .btn-link:focus{text-decoration:underline;box-shadow:none}.w3eden .btn-link.disabled,.w3eden .btn-link:disabled{color:var(--clr-sec);pointer-events:none}.w3eden .btn-group-lg>.btn,.w3eden .btn-lg{padding:.5rem 1rem;font-size:var(--font-size-lg);line-height:1.5;border-radius:.3rem}.w3eden .btn-group-sm>.btn,.w3eden .btn-sm{padding:.25rem .5rem;font-size:var(--font-size-sm);line-height:1.5;border-radius:var(--border-radius-sm)}.w3eden .btn-block{display:block;width:100%}.w3eden .btn-block+.btn-block{margin-top:.5rem}.w3eden input[type=button].btn-block,.w3eden input[type=reset].btn-block,.w3eden input[type=submit].btn-block{width:100%}.w3eden .fade{transition:opacity .15s linear}.w3eden .fade:not(.show){opacity:0}.w3eden .collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}.w3eden .dropdown,.w3eden .dropleft,.w3eden .dropright,.w3eden .dropup{position:relative}.w3eden .dropdown-toggle{white-space:nowrap}.w3eden .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.w3eden .dropdown-toggle:empty::after{margin-left:0}.w3eden .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:var(--border-radius-regular)}.w3eden .dropdown-menu[x-placement^=bottom],.w3eden .dropdown-menu[x-placement^=left],.w3eden .dropdown-menu[x-placement^=right],.w3eden .dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.w3eden .dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.w3eden .dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.w3eden .dropdown-item:focus,.w3eden .dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.w3eden .dropdown-item.active,.w3eden .dropdown-item:active{color:#fff;text-decoration:none;background-color:var(--color-primary)}.w3eden .dropdown-item.disabled,.w3eden .dropdown-item:disabled{color:var(--clr-sec);pointer-events:none;background-color:transparent}.w3eden .dropdown-menu.show{display:block}.w3eden .dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:var(--font-size-sm);color:var(--clr-sec);white-space:nowrap}.w3eden .dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.w3eden .input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.w3eden .input-group>.form-control{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.w3eden .input-group>.form-control:focus{z-index:3}.w3eden .input-group-append .btn{border-top-left-radius:0;border-bottom-left-radius:0;height:100%!important}.w3eden .custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.w3eden .custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;background-color:#fff;border:1px solid #ced4da;border-radius:var(--border-radius-regular);-webkit-appearance:none;-moz-appearance:none;appearance:none}.w3eden .custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.w3eden .custom-select:focus::-ms-value{color:#495057;background-color:#fff}.w3eden .custom-select[multiple],.w3eden .custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.w3eden .custom-select:disabled{color:var(--clr-sec);background-color:#e9ecef}.w3eden .nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.w3eden .nav-link,.w3eden .nav>li>a{display:block;padding:.5rem 1rem}.w3eden .nav-link:focus,.w3eden .nav-link:hover,.w3eden a.badge:focus,.w3eden a.badge:hover{text-decoration:none}.w3eden .nav-link.disabled{color:var(--clr-sec);pointer-events:none;cursor:default}.w3eden .nav-tabs{border-bottom:1px solid #dee2e6}.w3eden .nav-tabs .nav-item{margin-bottom:-1px}.w3eden .nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.w3eden .nav-tabs .nav-link:focus,.w3eden .nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.w3eden .nav-tabs .nav-link.disabled{color:var(--clr-sec);background-color:transparent;border-color:transparent}.w3eden .nav-tabs .nav-item.show .nav-link,.w3eden .nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.w3eden .tab-content>.active{display:block}.w3eden .card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid #e5e5e5;border-radius:var(--border-radius-regular)}.w3eden .card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.w3eden .card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.w3eden .card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.w3eden .card-title{margin-bottom:.75rem}.w3eden .card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid #e5e5e5}.w3eden .card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.w3eden .card-header+.list-group .list-group-item:first-child{border-top:0}.w3eden .card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid #e5e5e5}.w3eden .card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.w3eden .card-header-tabs{margin-bottom:-.75rem;border-bottom:0}.w3eden .card-header-pills,.w3eden .card-header-tabs{margin-right:-.625rem;margin-left:-.625rem}.w3eden .card-img{width:100%;border-radius:calc(.25rem - 1px)}.w3eden .card-img-top{width:100%;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.w3eden .accordion>.card{overflow:hidden}.w3eden .accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.w3eden .accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.w3eden .accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.w3eden .accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.w3eden .accordion>.card .card-header{margin-bottom:-1px}.w3eden .pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:var(--border-radius-regular)}.w3eden .page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:var(--color-primary);background-color:#fff;border:1px solid #dee2e6}.w3eden .page-link:hover{z-index:2;color:var(--color-primary-hover);text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.w3eden .page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.w3eden .badge{display:inline-block;padding:.4em .8em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--border-radius-regular);background:rgba(0,0,0,.05);transition:color .15s ease-in-out,background-color .15s ease-in-out;border:0!important;align-content:center}.justify-content-between{justify-content:space-between}.w3eden .btn .badge{position:relative;top:-1px}.w3eden a.badge-success:focus,.w3eden a.badge-success:hover{background-color:#1e7e34}.w3eden a.badge-success.focus,.w3eden a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.w3eden .badge-info{background-color:var(--color-info)}.w3eden a.badge-info:focus,.w3eden a.badge-info:hover{background-color:#117a8b}.w3eden a.badge-info.focus,.w3eden a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.w3eden .badge-warning{color:#212529;background-color:var(--color-warning)}.w3eden a.badge-warning:focus,.w3eden a.badge-warning:hover{color:#212529;background-color:#d39e00}.w3eden a.badge-warning.focus,.w3eden a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.w3eden .badge-danger{background-color:var(--color-danger)}.w3eden a.badge-danger:focus,.w3eden a.badge-danger:hover{background-color:#bd2130}.w3eden a.badge-danger.focus,.w3eden a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.w3eden .alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:0;border-radius:var(--border-radius-regular);box-shadow:inset 0 0 0 2px rgba(255,255,255,.7)}.w3eden .alert-link{font-weight:700}.w3eden .alert-primary{color:#004085;background-color:#cce5ff}.w3eden .alert-success{color:var(--color-success-active);background-color:rgba(var(--color-success-rgb),.1)}.w3eden .alert-info{color:var(--color-info-active);background-color:rgba(var(--color-info-rgb),.1)}.w3eden .alert-warning{color:var(--color-warning-active);background-color:rgba(var(--color-warning-rgb),.1)}.w3eden .alert-danger{color:var(--color-danger-active);background-color:rgba(var(--color-danger-rgb),.1)}.w3eden .media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.w3eden .media-body{-ms-flex:1;flex:1}.w3eden .list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.w3eden .list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid #e5e5e5}.w3eden .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.w3eden .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.w3eden .list-group-item.active{z-index:2;color:#fff;background-color:var(--color-primary);border-color:var(--color-primary)}.w3eden .list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.w3eden .list-group-flush .list-group-item:last-child{margin-bottom:-1px}.w3eden .list-group-flush:first-child .list-group-item:first-child{border-top:0}.w3eden .list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.w3eden .modal,.w3eden .modal-open{overflow:hidden}.w3eden .modal-open .modal{overflow-x:hidden;overflow-y:auto}.w3eden .modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;outline:0}.w3eden .modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.w3eden .modal.fade .modal-dialog{transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}.w3eden .modal.show .modal-dialog{-webkit-transform:none;transform:none}.w3eden .modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.w3eden .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.w3eden .modal-dialog-scrollable .modal-footer,.w3eden .modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.w3eden .modal-dialog-scrollable .modal-body{overflow-y:auto}.w3eden .modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.w3eden .modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}.w3eden .modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.w3eden .modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.w3eden .modal-dialog-centered.modal-dialog-scrollable::before{content:none}.w3eden .modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.w3eden .modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.w3eden .modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.w3eden .modal-title{margin-bottom:0;line-height:1.5}.w3eden .modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.w3eden .modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #dee2e6;border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.w3eden .modal-footer>:not(:first-child){margin-left:.25rem}.w3eden .modal-footer>:not(:last-child){margin-right:.25rem}@media (min-width:576px){.w3eden .modal-dialog{max-width:500px;margin:1.75rem auto}.w3eden .modal-dialog-centered{min-height:calc(100% - 3.5rem)}.w3eden .modal-dialog-centered::before{height:calc(100vh - 3.5rem)}}.w3eden .bg-primary{background-color:var(--color-primary)!important}.w3eden .bg-secondary{background-color:var(--clr-sec)!important}.w3eden .bg-success{background-color:var(--color-success)!important}.w3eden .bg-info{background-color:var(--color-info)!important}.w3eden .bg-warning{background-color:var(--color-warning)!important}.w3eden .bg-danger{background-color:var(--color-danger)!important}.w3eden .bg-dark{background-color:#343a40!important}.w3eden .bg-white{background-color:#fff!important}.w3eden .clearfix::after{display:block;clear:both;content:""}.w3eden #categories_meta_box label,.w3eden .d-inline{display:inline!important}.w3eden .d-inline-block{display:inline-block!important}.w3eden .d-block{display:block!important}.w3eden .d-flex{display:-ms-flexbox!important;display:flex!important}.w3eden .d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}.w3eden .float-left{float:left!important}.w3eden .float-right,.w3eden .pull-right{float:right!important}.w3eden .position-relative{position:relative!important}.w3eden .position-absolute{position:absolute!important}.w3eden .fixed-bottom,.w3eden .fixed-top{position:fixed;right:0;left:0;z-index:1030}.w3eden .fixed-top{top:0}.w3eden .fixed-bottom{bottom:0}.w3eden .g-recaptcha>div>div,.w3eden .w-100{width:100%!important}.w3eden .mw-100,.w3eden video{max-width:100%!important}.w3eden .m-0{margin:0!important}.w3eden .mb-2,.w3eden .mb-3,.w3eden .mb-4{margin-bottom:15px!important}.w3eden .mr-2{margin-right:10px!important}.w3eden .p-0{padding:0!important}.w3eden .p-3{padding:15px!important}.w3eden .pt-0{padding-top:0!important}.w3eden .m-auto{margin:auto!important}.w3eden .text-left{text-align:left!important}.w3eden .text-right{text-align:right!important}.w3eden .text-center{text-align:center!important}.w3eden .card-header .role-tabs a.active i.fa-circle,.w3eden .text-white{color:#fff!important}.w3eden .text-primary{color:var(--color-primary)!important}.w3eden a.text-primary:focus,.w3eden a.text-primary:hover{color:var(--color-primary-hover)!important}.w3eden .text-secondary{color:var(--clr-sec)!important}.w3eden a.text-secondary:focus,.w3eden a.text-secondary:hover{color:var(--clr-sec-hover)!important}.w3eden .color-green,.w3eden .color-success,.w3eden .text-success{color:var(--color-success)!important}.w3eden a.text-success:focus,.w3eden a.text-success:hover{color:var(--color-success-active)!important}.w3eden .text-info{color:var(--color-info)!important}.w3eden a.text-info:focus,.w3eden a.text-info:hover{color:var(--color-info-active)!important}.w3eden .text-warning{color:var(--color-warning)!important}.w3eden a.text-warning:focus,.w3eden a.text-warning:hover{color:var(--color-warning-active)!important}.w3eden .text-danger{color:var(--color-danger)!important}.w3eden a.text-danger:focus,.w3eden a.text-danger:hover{color:var(--color-danger-active)!important}.w3eden .text-muted{color:var(--clr-sec)!important}.w3eden .visible{visibility:visible!important}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.human,.w3eden .badge:empty,.w3eden .btn .label-price:empty .wpdm-hide-right,.w3eden .btn.wpdm-email2dl label,.w3eden .collapse:not(.show),.w3eden .hide_empty:empty,.w3eden .tab-content>.tab-pane:not(.active),.w3eden .wpdm-filelist thead,.w3eden label.error.valid,.w3eden template{display:none}#wpdm-notify-top-center .wpdm-notify,.inline-block,.text-center.wpdmlogin-logo a,.w3eden .videothumbs .thumbnail{display:inline-block!important}.w3eden .btn.wpdm-category-list li,.w3eden .clear,.wpdm-clear{clear:both}.w3eden ul.wpdm-pagination{margin:0!important;padding:15px;display:inline-flex!important}.w3eden .card img,.w3eden .list-group-item img{padding:0;margin:0}.w3eden .no-radius{border-radius:0!important}.w3eden .btn.wpdm-category{border:0;border-bottom:0 solid #ccc}.w3eden .btn.wpdm-front h3.title{margin:10px 0 5px 10px;font-size:14pt}.w3eden .ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;position:relative;width:100%;display:block}.w3eden #loginform{margin-top:20px}.w3eden #categories-section .cat-card li,.w3eden .btn.wpdm-category-list{list-style:none}.w3eden .download_link label{width:60px;display:block;font-size:10px}.w3eden .cat-page-tilte legend{padding-right:5px}.w3eden .wpdm-loading{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;background:var(--color-danger);color:#fff;padding:7px 15px;position:absolute;font-size:12px;font-weight:700;z-index:999999}.w3eden .btn.wpdm-email2dl .wcon input[type=text]{background:#fff;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;border:1px solid #aaa;font-size:11pt;padding:4px 10px;width:250px}.w3eden .drag-drop #drag-drop-area{border:3px dashed rgba(0,0,0,.1);height:200px}.w3eden .drag-drop-inside{text-align:center;padding:30px}.w3eden .btn.wpdm-front .inside{padding:10px}.w3eden #wpdm-login-form{position:absolute;padding:0 10px;border:1px solid #aaa;background:#eee;z-index:9999999}.w3eden .btn.wpdm-drop-box{z-index:99999;display:none;position:absolute}.w3eden .more_previews_a{display:block;margin-right:8px}.w3eden .more_previews_a:last-child{margin-right:0!important}.w3eden .wpdm_file .cont{padding:5px 10px;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomright:3px;-moz-border-radius-bottomleft:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;font-size:9pt}.w3eden .wpdm_icon{box-shadow:none;min-width:48px;max-width:48px;width:48px}.w3eden .all-locks{padding:15px}.w3eden td.actions{width:100px}.w3eden .actions a.btn{border-radius:2px}.w3eden input.input-xs{font-size:8pt;width:150px;height:25px;border-radius:1.5px;line-height:normal;text-align:center}.w3eden .input-group-btn .btn.wpdm_submit{padding:8px 16px!important}.w3eden #wp-post_content-editor-container{border:0}.w3eden #package-content-section #insert-media-button{margin:3px 0 0}.w3eden #package-content-section .wp-editor-tools.hide-if-no-js{background:#eef2f4 0 0;border-bottom:1px solid #e5e5e5;padding:10px 10px 0}.w3eden td.mceToolbar{border-bottom:1px solid #ddd!important}.w3eden #post_content-html,.w3eden #post_content-tmce{height:27px}.w3eden .mceAction,.w3eden a.mceButton .mceIcon{font:400 15px/1 dashicons!important;text-align:left!important}.w3eden #attach-file-section .panel-body,.w3eden #package-settings-section .panel-body{padding:0!important}.w3eden #attach-file-section .tab-content .panel-body,.w3eden #package-settings-section .tab-content .panel-body{padding:15px!important}.w3eden .btn.wpdm-full-front{width:100%!important;clear:both;display:block}.w3eden #attach-file-section .nav-tabs,.w3eden #package-settings-section .nav-tabs{margin:0!important;padding-top:10px;padding-left:10px;padding-bottom:0;background:#fafafa}.w3eden #attach-file-section .nav-tabs li a,.w3eden #package-settings-section .nav-tabs li a{font-size:11px}.w3eden #attach-file-section .tab-content,.w3eden #package-settings-section .tab-content{padding:20px}.w3eden #attach-file-section #ftabs ul.jqueryFileTree li{padding-left:20px!important}.w3eden #package-settings-section td{vertical-align:middle}.w3eden .wpdm-accordion{border:0!important}.w3eden .wpdm-accordion .panel h3{font-size:10pt!important;border-radius:0;padding:7px 10px!important;border-bottom:1px solid #d1e0e4!important;font-weight:700;border:0;margin:0!important}.w3eden .wpdm-accordion h3 .wpdmlock{opacity:1!important;margin-right:10px!important}.w3eden .wpdm-accordion .panel{padding:0;overflow:hidden;border:1px solid #d1e0e4;margin-bottom:5px!important}.w3eden .wpdm-accordion .panel .panel-body{border:0;margin:0!important}.w3eden .wpdmlock+label{border:2px solid #306acb;display:inline-block;height:14px!important;margin-right:5px;margin-top:1px!important;width:14px!important}.w3eden .panel-heading>label{position:relative;margin:0}.w3eden .wpdmlock:checked+label:after{content:"";position:absolute;left:2px;top:3px;background:#306acb;width:10px!important;height:10px!important;z-index:999999}.w3eden .accordion .card,.w3eden .accordion .card-header label{margin:0!important}.w3eden #package-settings-section .wpdm-accordion .panel{margin-bottom:-2px!important;border-radius:0!important}.w3eden .btn.wpdm-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-ms-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}.w3eden #wpdm-pf .form-control:not(.form-control-lg){padding:8px 16px;font-size:14px;height:36px}.w3eden div.tooltip.in{border-radius:2px!important}.w3eden #categories-section .cat-card,.w3eden .card-body.tag-card{height:200px;overflow:hidden;padding:0 15px!important}.w3eden #categories-section .cat-card{max-height:200px}.w3eden #categories-section .cat-card:hover,.w3eden .card-body.tag-card:hover{overflow:auto}.w3eden #categories-section .cat-card>ul{margin:0!important;padding-top:10px;padding-bottom:10px}.w3eden #categories-section .cat-card ul{padding-left:20px}.w3eden #categories-section .cat-card label{font-weight:400!important}.w3eden .btn.btn-xs{border-radius:1.5px;padding:4px 8px;font-size:10px}.w3eden .btn.btn-xs.btn-icon{padding:4px;min-width:2.1rem}.w3eden .btn.wpdm- :hover{opacity:.9}.w3eden .wpdm-social-lock{text-transform:none!important}.w3eden .wpdm-social-lock .fa{margin-right:5px}.w3eden .pluginButtonIcon{left:0;margin-left:-3px;margin-right:5px;position:relative;vertical-align:top}.w3eden .btn.wpdm-btn-play,.w3eden .nav-tabs li a{outline:0!important}.w3eden button.wpdm-btn-play-lg.wpdm-btn-play{border-radius:3px;padding:0!important;text-align:center;width:56px!important;height:56px;line-height:56px;font-size:12px!important}.w3eden .sx_plugin-button-2x_favblue{background-position:0 -42px}.w3eden .nav-tabs li{margin-left:0!important}.w3eden .ptypes li{border:0!important;margin:0!important;list-style:none!important;padding:0!important}.w3eden #wpdm-files_filter{padding-right:10px;padding-top:10px}.w3eden #wpdm-files{margin-bottom:0}.w3eden #wpdm-files_info,.w3eden #wpdm-files_paginate,.w3eden video.thumbnail{padding:10px}.w3eden input.input-error{border:1px solid var(--color-danger)!important;color:var(--color-danger)!important}.w3eden label.error{color:var(--color-danger);font-weight:300!important;font-size:11px!important}.w3eden .btn.wpdm-archive-meta .wpdm-download-link{padding:5px 10px!important;margin:0!important;font-size:9pt}.w3eden .btn.wpdm-archive-meta li{border:0!important;list-style:none!important;padding-right:20px!important}.w3eden .btn.wpdm-archive-meta li:last-child{padding:0!important;max-width:100px!important;text-align:right!important}.w3eden .btn.wpdm-archive-meta .wpdm-download-link img{box-shadow:none!important;height:30px;width:auto}.w3eden .wpdm-file-entry{border:1px solid #eee;padding:10px;border-radius:3px;font-size:9pt;text-align:center}.w3eden .panel{box-shadow:none!important}.w3eden .card .card-header{font-size:10pt;font-weight:700}.w3eden .card-rec .btn-footer,.w3eden .card-rec .card-body{padding:15px!important}.w3eden .card-rec .card-body .card-title{font-weight:800}.w3eden .card-dls .table,.w3eden .card-fav .table,.w3eden .card-footer .card-title{margin:0}.w3eden .card-dls .table td,.w3eden .card-fav .table td{padding-left:10px}.w3eden .card .table,.w3eden .panel .table{border-top:0}.w3eden .card .table thead th,.w3eden .panel .table thead th{border-top:0;border-bottom-width:1px;background-color:#f5f5f5;text-align:left}.w3eden .panel img,.w3eden .wpdm-file-entry img{box-shadow:none}.w3eden .input-group input:not(:last-child){border-top-right-radius:0!important;border-bottom-right-radius:0!important}.w3eden .btn.btn-group.bootstrap-select .btn.dropdown-toggle{border-radius:3px!important}.w3eden #wpdm-featured-image{display:block;height:200px;border:2px dashed #ddd;margin:15px;background:url(../images/plus.svg) no-repeat center center;background-size:48px;text-indent:-999999px}.w3eden .cfile .panel-file .panel-heading .btn{position:absolute;right:9px;top:7px}.w3eden .cfile .panel-file .panel-heading{position:relative}.w3eden .btn-wd{min-width:140px}.w3eden .btn-group.select{width:100%}.w3eden .btn-group.select .btn{text-align:left}.w3eden .btn-group.select .caret{position:absolute;top:50%;margin-top:-1px;right:8px}.w3eden .btn .label{margin-left:5px}.w3eden .btn.btn-linkedin{background-color:#007ab9!important;color:#fff!important}.w3eden .wpdm-download-link .fa-download,.w3eden .wpdm-download-link .fa-icon-left{margin-right:5px}.w3eden .fa-play{margin:0!important}.w3eden #wpdm-pf .alert.alert-success:before,.w3eden .btn .filter-option{background:0 0!important}.w3eden #xfilelist input.input-sm{height:31px!important}.w3eden #xfilelist .panel-footer.footer-info{font-family:Courier,monospace;font-size:9pt;text-align:center;background:#fafafa}.w3eden #xfilelist .panel-heading{font-weight:400;font-size:8pt;padding-top:0!important;padding-bottom:0;line-height:40px;height:40px;overflow:hidden;word-break:break-all}.w3eden .wpdm-filelist td{border-left:0;border-right:0;border-top:1px solid #fff!important;border-bottom:0!important;background:rgba(0,0,0,.03)!important;vertical-align:middle!important}.w3eden .wpdm-filelist{border:0!important}.w3eden .wpdm-frontend-tabs a{color:#fff!important;border-radius:0!important;text-transform:uppercase;font-size:9pt!important;font-weight:900;border:0!important;line-height:20px!important}.w3eden .wpdm-frontend-tabs a.btn{border-left:1px solid rgba(255,255,255,.15)!important;border-right:1px solid rgba(0,0,0,.15)!important;border-bottom:1px solid rgba(0,0,0,.15)!important}.w3eden .wpdm-frontend-tabs{border-bottom:4px solid var(--color-primary)!important;border-radius:3px;background:#34495e;overflow:hidden}.w3eden .nav-tabs.wpdm-frontend-tabs a.active,.w3eden .nav-tabs.wpdm-frontend-tabs a:active,.w3eden .nav-tabs.wpdm-frontend-tabs a:focus,.w3eden .nav-tabs.wpdm-frontend-tabs li.active a{background:var(--color-primary)!important;border:0!important}.w3eden .wpdm-frontend-tabs a:hover{background:rgba(26,188,156,.69)!important}.w3eden .well{padding:15px;box-shadow:none;border:0;font-style:normal;background:#f5f5f5;border-radius:4px;margin-bottom:10px}.w3eden #wpdm-pf #title,.w3eden fieldset{border-radius:3px}.w3eden .btn.btn-addtocart .label{font-size:95%;letter-spacing:.5px;padding:3px 5px 1px!important}.w3eden .btn .label-price{background:rgba(0,0,0,.1)}.w3eden #currentfiles .panel-heading{border-top:0!important}.w3eden div.list-group.pm-list{margin-bottom:0!important}.w3eden div.list-group.pm-list .list-group-item{cursor:pointer!important}.w3eden .discount-msg{padding:6px 12px;background:#5bb283;color:#fff;margin-bottom:5px;border-radius:3px;display:block;font-weight:400;font-size:9pt;z-index:999999999}.w3eden .discount-msg .fa{margin-right:6px}.w3eden .selectpicker.btn.btn-secondary{background:0 0!important;color:#333!important;border:1px solid #d5d5d5!important}.w3eden .field-group{margin-bottom:10px}.w3eden fieldset{border:1px solid #ddd!important;padding:10px}.w3eden legend{font-weight:700;font-size:inherit;color:inherit;display:inline;float:left;padding:10px!important;border-bottom:1px solid #ddd!important}.w3eden .package-info-list{font-size:9pt;line-height:1.5;color:#888}.w3eden .package-info-list .pull-left .fa{font-size:14pt;line-height:30px;margin-right:6px;color:var(--color-info)}.w3eden .package-info-list strong{color:#333}.w3eden .package-info-list .list-group-item .wpdm-download-link{font-size:12pt;display:block;text-align:center;font-weight:900;color:var(--color-info)}.w3eden .pagination-centered{display:inline-flex;margin:0 auto}.w3eden .pagination li a,.w3eden .pagination li span{padding:0 15px;margin:2px;min-width:40px;line-height:32px;text-align:center;border-radius:3px;display:block;font-size:14px;font-weight:600;border:1px solid rgba(0,0,0,.2);background:rgba(0,0,0,.01)}.pagination li a.dot,.pagination li span{border:1px solid transparent!important}.w3eden .pagination li span{background:rgba(var(--color-primary-rgb),.1)!important;border-color:var(--color-primary)!important;color:var(--color-primary)}.pagination li a.current-page{border-color:var(--color-primary);background:var(--color-primary);color:#fff}.w3eden .pagination li a.current,.w3eden .pagination li a.disabled{font-weight:900;border:1px solid rgba(61,115,207,.47);color:rgba(61,115,207,.47)}.w3eden .pagination li a:not(.disabled):not(.current):hover{border:1px solid var(--color-primary);text-decoration:none}.w3eden .card h3{margin:0;padding:0;font-size:14pt;font-weight:700}.w3eden #wdmdc .card{margin-bottom:20px}.media.wpdm-rec-item{border:1px solid #e8e8e8;padding:10px;border-radius:3px;background:#fbfbfb}.wpdm-rec-item img.wpdm-rec-thumb{width:48px!important;height:48px!important;border-radius:500px!important;border:1px solid #eee}.w3eden #cppo{margin-right:-2px!important;margin-top:-3px!important}.w3eden .panel-body .panel-row{margin-top:10px;margin-bottom:10px!important;display:inline-table}.w3eden #wdmds .list-group-item{font-size:10px;text-transform:uppercase;letter-spacing:1px;font-weight:400}.w3eden #wdmds .list-group-item.active,.w3eden #wdmds .list-group-item.active:active,.w3eden #wdmds .list-group-item.active:focus,.w3eden #wdmds .list-group-item.selected{font-weight:800}.w3eden #wdmds #logo-block{border-radius:8px;border:1px solid rgba(69,89,122,.2);margin-bottom:25px;padding:15px}.w3eden #wdmds .shop-logo{box-shadow:none;border-radius:4px;margin:0;max-width:100%;height:auto}.w3eden .mr-3{margin-right:12px!important}#wdmds h3{font-size:10px;text-transform:uppercase;letter-spacing:1px;color:var(--color-muted);opacity:.4;margin:20px 0 10px}.w3eden #wdmds .adp-item,.w3eden #wdmds .udb-item{font-size:13px;letter-spacing:1px;line-height:30px;margin-bottom:10px;display:block;width:100%;outline:0!important;color:#708ca3;font-family:var(--wpdm-font);padding-left:6px;text-decoration:none!important}.w3eden #wdmds .adp-item:hover,.w3eden #wdmds .udb-item:hover{color:var(--color-primary)!important;font-weight:500}.w3eden #wdmds .m-icon{width:30px;line-height:30px;height:30px;text-align:center;border-radius:4px;border:1px solid #eee;-webkit-transition:all ease-in-out 400ms;-moz-transition:all ease-in-out 400ms;-ms-transition:all ease-in-out 400ms;-o-transition:all ease-in-out 400ms;transition:all ease-in-out 400ms;background:#fff}.w3eden #wdmds .selected .m-icon,.w3eden .udb-item.selected{color:var(--color-primary)!important}.w3eden #wdmds .selected .m-icon{border-color:rgba(var(--color-primary-rgb),.2);background:linear-gradient(45deg,#fff,rgba(var(--color-primary-rgb),.2))!important}.w3eden .list-group-item.active,.w3eden .list-group-item.active:focus,.w3eden .list-group-item.active:hover{z-index:2;color:#fff;background-color:var(--color-primary);border-color:var(--color-primary)!important}.w3eden #wdmdc .tab-pane .panel:last-child{margin-bottom:0}.w3eden #wdmdc .nav-tabs:not(.card-header-tabs){border-bottom:1px solid #ddd!important}.w3eden #wdmdc .nav-tabs:not(.card-header-tabs) a{border-color:#ddd #ddd transparent!important}.w3eden #wdmdc .table{border-bottom:0}.w3eden .wpdmlogin-logo{padding-bottom:30px}.w3eden .wpdmlogin-logo img{box-shadow:none!important;max-height:128px}.w3eden #wpdmlogin .input-group-prepend .fa,.w3eden #wpdmreg .input-group-prepend .fa{width:20px}.w3eden #wpdmlogin,.w3eden #wpdmreg{margin:0 auto;max-width:450px}.w3eden #checkout-login #wpdmlogin,.w3eden #checkout-login #wpdmreg{margin:0 auto;max-width:100%}.w3eden .package-info-list .panel{margin:-10px -15px;border:0}.w3eden .package-info-list .panel .panel-heading{border-radius:0}.w3eden .wpdm-social-lock{margin:0 3px!important}.w3eden .wpdm-social-lock.btn{border-radius:2px!important;margin-bottom:5px!important}.w3eden .panel.panel-package-locks{border:0;box-shadow:0 0 15px rgba(0,0,0,.15)!important;padding:20px!important}.w3eden .panel.panel-package-locks .panel-heading{padding-bottom:0!important;font-size:14pt!important;font-weight:900;background:0 0!important;border:0!important;text-transform:uppercase}.w3eden .panel-body.wpdm-social-locks.text-center>p{margin-bottom:20px;margin-top:0;padding:0}.w3eden #wp-post_content-editor-tools{padding-right:7px!important}.w3eden .wp-editor-container{border-top:1px solid #e7e6e6!important}.w3eden #package-description .wp-switch-editor{background:rgba(255,255,255,.2);font-size:8pt!important;font-weight:800;height:20px!important;letter-spacing:1px;line-height:20px!important;padding:5px 15px!important}.w3eden .html-active .switch-html,.w3eden .tmce-active .switch-tmce{border-bottom-color:#fafafa!important}.w3eden .html-active .switch-html,.w3eden .quicktags-toolbar,.w3eden .tmce-active .switch-tmce,.w3eden div.mce-toolbar-grp{background:#fafafa!important}.w3eden .ed_button.button.button-small{border-color:#e1e1e1;border-radius:2px;box-shadow:0 0 1px rgba(0,0,0,.1);padding-left:10px;padding-right:10px}.w3eden #wpdm-pf .nav.nav-tabs a{font-size:9pt!important;letter-spacing:.2px;text-transform:capitalize}.w3eden #wpdm-pf .alert.alert-success{position:fixed;z-index:999999999!important;top:50px;right:20px;max-width:300px;-webkit-transition:all .2s ease;transition:all .2s ease}.w3eden div.wpdmcard{position:relative;overflow:hidden;padding:40px;border-top:5px solid var(--color-primary);box-shadow:0 3px 15px rgba(0,0,0,.1);background:#fff;border-radius:10px;margin:0 auto 50px}.w3eden div#wpdmlogin,.w3eden div#wpdmreg{background:#fff;padding:48px;border:1px solid rgba(var(--clr-sec-rgb),.2)}.w3eden .input-wrapper label{font-size:12px;font-weight:400;opacity:.3;margin:0}.w3eden .input-wrapper{border:1px solid #ddd;border-radius:4px;padding:7px 15px;background:#fff!important;transition:all ease-in-out 400ms}.w3eden .input-wrapper.input-focused{border:1px solid var(--color-primary)}.w3eden .input-wrapper.input-error{border:1px solid var(--color-danger)!important}.w3eden .input-wrapper.input-withvalue{border:1px solid var(--color-primary-active)}.w3eden .input-wrapper .form-control{border:0!important;padding:0!important;box-shadow:none!important;background:0 0!important}.card-header.collapsed,.card-header[aria-expanded=false]{border-radius:3px;overflow:hidden;border-bottom:0}.w3eden div.wpdmcard.color-primary{border-top:5px solid var(--color-primary)!important}.w3eden div.wpdmcard.color-purple{border-top:5px solid #8557d3!important}.w3eden div.wpdmcard.color-green,.w3eden div.wpdmcard.color-success{border-top:5px solid var(--color-success)!important}.w3eden div.wpdmcard.color-danger,.w3eden div.wpdmcard.color-red{border-top:5px solid var(--color-danger)!important;box-shadow:0 -1px 20px rgba(255,50,62,.1)}.w3eden div#wpdmlogin.lostpass{border-top:5px solid var(--color-info)}.w3eden .panel-info .panel-body.lead{font-weight:900}.w3eden .panel-body.lead{margin:0}.w3eden .color-purple{color:#8557d3!important}.w3eden .color-blue,.w3eden .color-info{color:var(--color-info)!important}.w3eden .color-danger,.w3eden .color-red{color:var(--color-danger)!important}.w3eden .color-primary{color:var(--color-primary)!important}.w3eden .list-group li{margin-left:0}.w3eden .videothumbs .thumbnail{margin:0 10px 20px 0!important}.w3eden iframe#thumbnail{background:#f2f6f8;background:-moz-linear-gradient(top,#f2f6f8 0,#d8e1e7 5%,#e0eff9 100%);background:-webkit-linear-gradient(top,#f2f6f8 0,#d8e1e7 5%,#e0eff9 100%);background:linear-gradient(to bottom,#f2f6f8 0,#d8e1e7 5%,#e0eff9 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f6f8', endColorstr='#e0eff9', GradientType=0)}.w3eden .alert.alert-progress{background:#08bdf9;color:#fff}.w3eden .btn.inddl[disabled],.w3eden .d-none,.w3eden .wpdm_hide,.w3eden [hidden],.w3eden label.error.valid{display:none!important}.w3eden .package-locks .panel+.panel{margin-top:5px}.w3eden .panel.terms-panel .panel-footer .eden-checkbox{font-weight:700!important}.w3eden .link-template-widget .media-body a{margin:0 0 6px;padding:0;line-height:normal;font-size:12pt;display:block}.w3eden .card-header .role-tabs a i.fa-circle{color:rgba(255,255,255,.5)!important}.w3eden .bold{font-weight:600!important}.w3eden .modal-title{font-weight:600;letter-spacing:1px}.w3eden .panel-purchases .panel-footer .badge{border-radius:2px;padding:5px 10px;margin-right:10px;letter-spacing:.5px}.w3eden .table.manage-packages-frontend td{vertical-align:middle}.w3eden .btn.btn-social{padding:0;width:48px;line-height:40px;border-radius:2px;margin:0 3px;height:40px}.w3eden .wpdm-custom-select{appearance:none;-webkit-appearance:none;-moz-appearance:none;background:#fff url(../images/sort.svg) calc(100% - 10px) center no-repeat!important;background-size:15px!important;padding-right:10px!important;cursor:pointer}input.wpdm-checkbox[type=checkbox],input.wpdm-radio[type=radio]{border:1px solid #d5dbde;background:#d5dbde;color:#555;clear:none;cursor:pointer;display:inline-block;line-height:0;height:16px;margin:-3px 4px 0 0!important;outline:0;padding:0!important;text-align:center;vertical-align:middle;width:16px;min-width:16px;appearance:none;-webkit-appearance:none;box-shadow:none;position:relative;border-radius:1.5px!important;transition:ease-in-out 300ms}input.wpdm-checkbox.wpdm-checkbox-m[type=checkbox],input.wpdm-radio.wpdm-radio-m[type=radio]{transform:scale(1.5);border-radius:1px!important;margin:7px 10px 0 5px!important}input.wpdm-checkbox[type=checkbox]:checked{border:1px solid #1484f5;background:#1484f5;box-shadow:0 0 4px rgba(20,132,245,.71)}input.wpdm-radio[type=radio]:checked{border:1px solid #35c34d;background:#35c34d;box-shadow:0 0 4px rgba(53,195,77,.71)}input.wpdm-checkbox[type=checkbox]:checked::before,input.wpdm-radio[type=radio]:checked::before{content:"";position:absolute;left:4.5px;top:1.5px;width:5px!important;height:9px;border:solid #fff;border-width:0 2px 2px 0;transform:rotate(40deg);float:left;vertical-align:middle;font:400 21px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}svg#wpdm-loading path,svg#wpdm-loading rect{fill:#ff6700!important}.w3eden .blockui{position:relative}.w3eden .blockui:before{content:"";position:absolute;width:100%;height:100%;left:0;top:0;z-index:1;background:rgba(255,255,255,.8) url(../images/loader.svg) center center no-repeat;background-size:64px;transition:ease-in-out 400ms}#wpdm-fixed-top-center{position:fixed;top:0;z-index:9999999;left:calc(50% - 200px);width:400px;border-radius:0 0 8px 8px!important;text-align:center}#wpdm-floatify-top-right,#wpdm-notify-top-right{position:fixed;top:30px;right:30px;z-index:999999999!important}#wpdm-floatify-bottom-left,#wpdm-notify-bottom-full,#wpdm-notify-bottom-left{position:fixed;bottom:30px;left:30px;z-index:999999999!important}#wpdm-notify-bottom-full{bottom:0;left:0;width:100%;text-align:center!important}#wpdm-notify-top-center{position:fixed;left:50%!important;top:40px!important;z-index:999999999}.wpdm-floatify,.wpdm-notify{margin-bottom:10px;font-size:10pt!important;letter-spacing:.5px}.wpdm-notify{padding:20px 40px!important;border-radius:0;clear:both;background:#fff;background-size:24px!important;box-shadow:0 0 15px rgba(0,0,0,.1);cursor:pointer;font-size:11pt!important}#wpdm-notify-top-center .wpdm-notify{margin-left:-50%!important}.wpdm-hide-right{position:absolute}.wpdm-notify .wpdm-notify-title{display:block;margin-bottom:5px}.wpdm-notify-info{border-bottom:3px solid var(--color-info);color:var(--color-info-active)}.wpdm-notify-error,.wpdm-notify-success{background-size:24px!important;border-bottom:3px solid var(--color-success);color:var(--color-success-active)}#wpdm-notify-bottom-full .wpdm-notify-success{background:var(--color-success-active);color:#fff;margin:0!important;border:0!important;box-shadow:none;font-size:11pt!important}.wpdm-notify-error{border-bottom:3px solid var(--color-danger);color:var(--color-danger)}#wpdm-notify-top-center .wpdm-clear:nth-child(n+2){margin-top:-65px}.wpdm-notify::before{position:absolute;content:"\f057";font-family:"Font Awesome 5 Free";z-index:999999;right:4px;top:4px;opacity:0!important}.wpdm-notify:hover::before{opacity:1!important}.fgrw{margin-bottom:10px}.fgrw .col-md-3,.fgrw .col-md-9{vertical-align:middle;line-height:36px}.file-info{font-size:9pt;line-height:1.4}.media .file-ico{width:64px}.file-info .file-title{font-size:10pt;font-weight:700;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;line-height:40px;position:relative;width:100%}.wpdm-file-block .img-area img{height:auto;vertical-align:middle;margin:15px auto;display:inline-block}.wpdm-file-block .img-area img.file-ico{padding:20%!important}.w3eden .file-thumb.wpdm-file{padding:10%!important;max-width:100%}@media (max-width:800px){.wpdm-dir-locator{display:none}}.form-control.input-sm.inddlps{font-size:10px;border-radius:2px}.w3eden .img-48 img{max-width:48px;height:auto;padding:0;margin:0}#wdmapui{position:fixed;right:0;bottom:0;z-index:999999}#wpdm_close_player{position:absolute;margin-top:-24px;right:10px;display:none;cursor:pointer}#wdmapui:hover #wpdm_close_player{display:block}#wdmapui .wpdm-audio-control-buttons .btn{border-radius:2px}#wdmapui .progress{min-width:200px;height:38px;border-radius:2px;cursor:pointer;position:relative;background:rgba(0,0,0,.06);margin:0;padding:10px 55px}#wdmapui .progress-bar{border-radius:2px;background:#239cef linear-gradient(180deg,#5b71e8d6,#4b5dbbde);height:100%}#wdmapui #mins,#wdmapui #played{line-height:36px;position:absolute;font-size:10px}#wdmapui #mins{right:15px}#wdmapui #played{left:15px}#wdmapui .volumctrl{position:absolute;right:0;width:100px;top:-40px;padding:7px 10px 0;border:1px solid #eee;border-radius:3px;background:#fcfcfc;display:none}#wdmapui .volumctrl input{max-width:100%;margin:0}
/* Minify_CSS_UriRewriter::$debugText

*/

/* fonts.css */

/* 1   */ /* latin-ext */
/* 2   */ @font-face {
/* 3   */ 	font-family: 'Lato';
/* 4   */ 	font-style: italic;
/* 5   */ 	font-weight: 400;
/* 6   */ 	font-display: swap;
/* 7   */ 	src: url(../fonts/lato-regular-latin-ext-italic.woff2) format('woff2');
/* 8   */ 	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
/* 9   */ }
/* 10  */ /* latin */
/* 11  */ @font-face {
/* 12  */ 	font-family: 'Lato';
/* 13  */ 	font-style: italic;
/* 14  */ 	font-weight: 400;
/* 15  */ 	font-display: swap;
/* 16  */ 	src: url(../fonts/lato-regular-latin-italic.woff2) format('woff2');
/* 17  */ 	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
/* 18  */ }
/* 19  */ /* latin-ext */
/* 20  */ @font-face {
/* 21  */ 	font-family: 'Lato';
/* 22  */ 	font-style: italic;
/* 23  */ 	font-weight: 700;
/* 24  */ 	font-display: swap;
/* 25  */ 	src: url(../fonts/lato-bold-latin-ext-italic.woff2) format('woff2');
/* 26  */ 	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
/* 27  */ }
/* 28  */ /* latin */
/* 29  */ @font-face {
/* 30  */ 	font-family: 'Lato';
/* 31  */ 	font-style: italic;
/* 32  */ 	font-weight: 700;
/* 33  */ 	font-display: swap;
/* 34  */ 	src: url(../fonts/lato-bold-latin-italic.woff2) format('woff2');
/* 35  */ 	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
/* 36  */ }
/* 37  */ /* latin-ext */
/* 38  */ @font-face {
/* 39  */ 	font-family: 'Lato';
/* 40  */ 	font-style: normal;
/* 41  */ 	font-weight: 400;
/* 42  */ 	font-display: swap;
/* 43  */ 	src: url(../fonts/lato-regular-latin-ext.woff2) format('woff2');
/* 44  */ 	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
/* 45  */ }
/* 46  */ /* latin */
/* 47  */ @font-face {
/* 48  */ 	font-family: 'Lato';
/* 49  */ 	font-style: normal;
/* 50  */ 	font-weight: 400;

/* fonts.css */

/* 51  */ 	font-display: swap;
/* 52  */ 	src: url(../fonts/lato-regular-latin.woff2) format('woff2');
/* 53  */ 	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
/* 54  */ }
/* 55  */ /* latin-ext */
/* 56  */ @font-face {
/* 57  */ 	font-family: 'Lato';
/* 58  */ 	font-style: normal;
/* 59  */ 	font-weight: 700;
/* 60  */ 	font-display: swap;
/* 61  */ 	src: url(../fonts/lato-bold-latin-ext.woff2) format('woff2');
/* 62  */ 	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
/* 63  */ }
/* 64  */ /* latin */
/* 65  */ @font-face {
/* 66  */ 	font-family: 'Lato';
/* 67  */ 	font-style: normal;
/* 68  */ 	font-weight: 700;
/* 69  */ 	font-display: swap;
/* 70  */ 	src: url(../fonts/lato-bold-latin.woff2) format('woff2');
/* 71  */ 	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
/* 72  */ }
/* 73  */ @font-face {
/* 74  */ 	font-family: "Ubuntu";
/* 75  */ 	font-weight: 400;
/* 76  */ 	font-style: normal;
/* 77  */ 	font-display: swap;
/* 78  */ 	src: url(../fonts/ubuntu-regular-webfont.woff2) format("woff2");
/* 79  */ }
/* 80  */ @font-face {
/* 81  */ 	font-family: "Ubuntu";
/* 82  */ 	font-weight: 500;
/* 83  */ 	font-style: normal;
/* 84  */ 	font-display: swap;
/* 85  */ 	src: url(../fonts/ubuntu-medium-webfont.woff2) format("woff2");
/* 86  */ }
/* 87  */ @font-face {
/* 88  */ 	font-family: "Ubuntu";
/* 89  */ 	font-weight: 700;
/* 90  */ 	font-style: normal;
/* 91  */ 	font-display: swap;
/* 92  */ 	src: url(../fonts/ubuntu-bold-webfont.woff2) format("woff2");
/* 93  */ }
/* 94  */ @font-face {
/* 95  */ 	font-family: "Open Sans";
/* 96  */ 	font-weight: 400;
/* 97  */ 	font-style: normal;
/* 98  */ 	font-display: swap;
/* 99  */ 	src: url(../fonts/opensans-regular-webfont.woff2) format("woff2");
/* 100 */ }

/* fonts.css */

/* 101 */ @font-face {
/* 102 */ 	font-family: "Open Sans";
/* 103 */ 	font-weight: 400;
/* 104 */ 	font-style: italic;
/* 105 */ 	font-display: swap;
/* 106 */ 	src: url(../fonts/opensans-italic-webfont.woff2) format("woff2");
/* 107 */ }
/* 108 */ @font-face {
/* 109 */ 	font-family: "Open Sans";
/* 110 */ 	font-weight: 700;
/* 111 */ 	font-style: normal;
/* 112 */ 	font-display: swap;
/* 113 */ 	src: url(../fonts/opensans-bold-webfont.woff2) format("woff2");
/* 114 */ }
/* Minify_CSS_UriRewriter::$debugText

*/

/* all.min.css */

/* 1 */ /*!
/* 2 *|  * Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
/* 3 *|  * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
/* 4 *|  * Copyright 2023 Fonticons, Inc.
/* 5 *|  */
/* 6 */ .fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-classic,.fa-regular,.fa-sharp,.fa-solid,.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-classic,.fa-regular,.fa-solid,.far,.fas{font-family:"Font Awesome 6 Free"}.fa-brands,.fab{font-family:"Font Awesome 6 Brands"}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}
/* 7 */
/* 8 */ .fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-fill-drip:before{content:"\f576"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-at:before{content:"\40"}.fa-trash-alt:before,.fa-trash-can:before{content:"\f2ed"}.fa-text-height:before{content:"\f034"}.fa-user-times:before,.fa-user-xmark:before{content:"\f235"}.fa-stethoscope:before{content:"\f0f1"}.fa-comment-alt:before,.fa-message:before{content:"\f27a"}.fa-info:before{content:"\f129"}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:"\f422"}.fa-explosion:before{content:"\e4e9"}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:"\f15c"}.fa-wave-square:before{content:"\f83e"}.fa-ring:before{content:"\f70b"}.fa-building-un:before{content:"\e4d9"}.fa-dice-three:before{content:"\f527"}.fa-calendar-alt:before,.fa-calendar-days:before{content:"\f073"}.fa-anchor-circle-check:before{content:"\e4aa"}.fa-building-circle-arrow-right:before{content:"\e4d1"}.fa-volleyball-ball:before,.fa-volleyball:before{content:"\f45f"}.fa-arrows-up-to-line:before{content:"\e4c2"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-circle-minus:before,.fa-minus-circle:before{content:"\f056"}.fa-door-open:before{content:"\f52b"}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:"\f2f5"}.fa-atom:before{content:"\f5d2"}.fa-soap:before{content:"\e06e"}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:"\f86d"}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:"\f539"}.fa-bridge-circle-check:before{content:"\e4c9"}.fa-pump-medical:before{content:"\e06a"}.fa-fingerprint:before{content:"\f577"}.fa-hand-point-right:before{content:"\f0a4"}.fa-magnifying-glass-location:before,.fa-search-location:before{content:"\f689"}.fa-forward-step:before,.fa-step-forward:before{content:"\f051"}.fa-face-smile-beam:before,.fa-smile-beam:before{content:"\f5b8"}.fa-flag-checkered:before{content:"\f11e"}.fa-football-ball:before,.fa-football:before{content:"\f44e"}.fa-school-circle-exclamation:before{content:"\e56c"}.fa-crop:before{content:"\f125"}.fa-angle-double-down:before,.fa-angles-down:before{content:"\f103"}.fa-users-rectangle:before{content:"\e594"}.fa-people-roof:before{content:"\e537"}.fa-people-line:before{content:"\e534"}.fa-beer-mug-empty:before,.fa-beer:before{content:"\f0fc"}.fa-diagram-predecessor:before{content:"\e477"}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:"\f176"}.fa-burn:before,.fa-fire-flame-simple:before{content:"\f46a"}.fa-male:before,.fa-person:before{content:"\f183"}.fa-laptop:before{content:"\f109"}.fa-file-csv:before{content:"\f6dd"}.fa-menorah:before{content:"\f676"}.fa-truck-plane:before{content:"\e58f"}.fa-record-vinyl:before{content:"\f8d9"}.fa-face-grin-stars:before,.fa-grin-stars:before{content:"\f587"}.fa-bong:before{content:"\f55c"}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:"\f67b"}.fa-arrow-down-up-across-line:before{content:"\e4af"}.fa-spoon:before,.fa-utensil-spoon:before{content:"\f2e5"}.fa-jar-wheat:before{content:"\e517"}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:"\f674"}.fa-file-circle-exclamation:before{content:"\e4eb"}.fa-circle-h:before,.fa-hospital-symbol:before{content:"\f47e"}.fa-pager:before{content:"\f815"}.fa-address-book:before,.fa-contact-book:before{content:"\f2b9"}.fa-strikethrough:before{content:"\f0cc"}.fa-k:before{content:"\4b"}.fa-landmark-flag:before{content:"\e51c"}.fa-pencil-alt:before,.fa-pencil:before{content:"\f303"}.fa-backward:before{content:"\f04a"}.fa-caret-right:before{content:"\f0da"}.fa-comments:before{content:"\f086"}.fa-file-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-code-pull-request:before{content:"\e13c"}.fa-clipboard-list:before{content:"\f46d"}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:"\f4de"}.fa-user-check:before{content:"\f4fc"}.fa-vial-virus:before{content:"\e597"}.fa-sheet-plastic:before{content:"\e571"}.fa-blog:before{content:"\f781"}.fa-user-ninja:before{content:"\f504"}.fa-person-arrow-up-from-line:before{content:"\e539"}.fa-scroll-torah:before,.fa-torah:before{content:"\f6a0"}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:"\f458"}.fa-toggle-off:before{content:"\f204"}.fa-archive:before,.fa-box-archive:before{content:"\f187"}.fa-person-drowning:before{content:"\e545"}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:"\f58a"}.fa-spray-can:before{content:"\f5bd"}.fa-truck-monster:before{content:"\f63b"}.fa-w:before{content:"\57"}.fa-earth-africa:before,.fa-globe-africa:before{content:"\f57c"}.fa-rainbow:before{content:"\f75b"}.fa-circle-notch:before{content:"\f1ce"}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:"\f3fa"}.fa-paw:before{content:"\f1b0"}.fa-cloud:before{content:"\f0c2"}.fa-trowel-bricks:before{content:"\e58a"}.fa-face-flushed:before,.fa-flushed:before{content:"\f579"}.fa-hospital-user:before{content:"\f80d"}.fa-tent-arrow-left-right:before{content:"\e57f"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-binoculars:before{content:"\f1e5"}.fa-microphone-slash:before{content:"\f131"}.fa-box-tissue:before{content:"\e05b"}.fa-motorcycle:before{content:"\f21c"}.fa-bell-concierge:before,.fa-concierge-bell:before{content:"\f562"}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:"\e068"}.fa-mars-and-venus-burst:before{content:"\e523"}.fa-caret-square-right:before,.fa-square-caret-right:before{content:"\f152"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-sun-plant-wilt:before{content:"\e57a"}.fa-toilets-portable:before{content:"\e584"}.fa-hockey-puck:before{content:"\f453"}.fa-table:before{content:"\f0ce"}.fa-magnifying-glass-arrow-right:before{content:"\e521"}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:"\f566"}.fa-users-slash:before{content:"\e073"}.fa-clover:before{content:"\e139"}.fa-mail-reply:before,.fa-reply:before{content:"\f3e5"}.fa-star-and-crescent:before{content:"\f699"}.fa-house-fire:before{content:"\e50c"}.fa-minus-square:before,.fa-square-minus:before{content:"\f146"}.fa-helicopter:before{content:"\f533"}.fa-compass:before{content:"\f14e"}.fa-caret-square-down:before,.fa-square-caret-down:before{content:"\f150"}.fa-file-circle-question:before{content:"\e4ef"}.fa-laptop-code:before{content:"\f5fc"}.fa-swatchbook:before{content:"\f5c3"}.fa-prescription-bottle:before{content:"\f485"}.fa-bars:before,.fa-navicon:before{content:"\f0c9"}.fa-people-group:before{content:"\e533"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-heart-broken:before,.fa-heart-crack:before{content:"\f7a9"}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:"\f360"}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:"\f597"}.fa-film:before{content:"\f008"}.fa-ruler-horizontal:before{content:"\f547"}.fa-people-robbery:before{content:"\e536"}.fa-lightbulb:before{content:"\f0eb"}.fa-caret-left:before{content:"\f0d9"}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:"\f06a"}.fa-school-circle-xmark:before{content:"\e56d"}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:"\f08b"}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:"\f13a"}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:"\f13e"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-headphones-alt:before,.fa-headphones-simple:before{content:"\f58f"}.fa-sitemap:before{content:"\f0e8"}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:"\f4b9"}.fa-memory:before{content:"\f538"}.fa-road-spikes:before{content:"\e568"}.fa-fire-burner:before{content:"\e4f1"}.fa-flag:before{content:"\f024"}.fa-hanukiah:before{content:"\f6e6"}.fa-feather:before{content:"\f52d"}.fa-volume-down:before,.fa-volume-low:before{content:"\f027"}.fa-comment-slash:before{content:"\f4b3"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-compress:before{content:"\f066"}.fa-wheat-alt:before,.fa-wheat-awn:before{content:"\e2cd"}.fa-ankh:before{content:"\f644"}.fa-hands-holding-child:before{content:"\e4fa"}.fa-asterisk:before{content:"\2a"}.fa-check-square:before,.fa-square-check:before{content:"\f14a"}.fa-peseta-sign:before{content:"\e221"}.fa-header:before,.fa-heading:before{content:"\f1dc"}.fa-ghost:before{content:"\f6e2"}.fa-list-squares:before,.fa-list:before{content:"\f03a"}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:"\f87b"}.fa-cart-plus:before{content:"\f217"}.fa-gamepad:before{content:"\f11b"}.fa-circle-dot:before,.fa-dot-circle:before{content:"\f192"}.fa-dizzy:before,.fa-face-dizzy:before{content:"\f567"}.fa-egg:before{content:"\f7fb"}.fa-house-medical-circle-xmark:before{content:"\e513"}.fa-campground:before{content:"\f6bb"}.fa-folder-plus:before{content:"\f65e"}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:"\f1e3"}.fa-paint-brush:before,.fa-paintbrush:before{content:"\f1fc"}.fa-lock:before{content:"\f023"}.fa-gas-pump:before{content:"\f52f"}.fa-hot-tub-person:before,.fa-hot-tub:before{content:"\f593"}.fa-map-location:before,.fa-map-marked:before{content:"\f59f"}.fa-house-flood-water:before{content:"\e50e"}.fa-tree:before{content:"\f1bb"}.fa-bridge-lock:before{content:"\e4cc"}.fa-sack-dollar:before{content:"\f81d"}.fa-edit:before,.fa-pen-to-square:before{content:"\f044"}.fa-car-side:before{content:"\f5e4"}.fa-share-alt:before,.fa-share-nodes:before{content:"\f1e0"}.fa-heart-circle-minus:before{content:"\e4ff"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-microscope:before{content:"\f610"}.fa-sink:before{content:"\e06d"}.fa-bag-shopping:before,.fa-shopping-bag:before{content:"\f290"}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-mitten:before{content:"\f7b5"}.fa-person-rays:before{content:"\e54d"}.fa-users:before{content:"\f0c0"}.fa-eye-slash:before{content:"\f070"}.fa-flask-vial:before{content:"\e4f3"}.fa-hand-paper:before,.fa-hand:before{content:"\f256"}.fa-om:before{content:"\f679"}.fa-worm:before{content:"\e599"}.fa-house-circle-xmark:before{content:"\e50b"}.fa-plug:before{content:"\f1e6"}.fa-chevron-up:before{content:"\f077"}.fa-hand-spock:before{content:"\f259"}.fa-stopwatch:before{content:"\f2f2"}.fa-face-kiss:before,.fa-kiss:before{content:"\f596"}.fa-bridge-circle-xmark:before{content:"\e4cb"}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:"\f589"}.fa-chess-bishop:before{content:"\f43a"}.fa-face-grin-wink:before,.fa-grin-wink:before{content:"\f58c"}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-road-circle-check:before{content:"\e564"}.fa-dice-five:before{content:"\f523"}.fa-rss-square:before,.fa-square-rss:before{content:"\f143"}.fa-land-mine-on:before{content:"\e51b"}.fa-i-cursor:before{content:"\f246"}.fa-stamp:before{content:"\f5bf"}.fa-stairs:before{content:"\e289"}.fa-i:before{content:"\49"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:"\f6f2"}.fa-pills:before{content:"\f484"}.fa-face-grin-wide:before,.fa-grin-alt:before{content:"\f581"}.fa-tooth:before{content:"\f5c9"}.fa-v:before{content:"\56"}.fa-bangladeshi-taka-sign:before{content:"\e2e6"}.fa-bicycle:before{content:"\f206"}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:"\e579"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-ambulance:before,.fa-truck-medical:before{content:"\f0f9"}.fa-wheat-awn-circle-exclamation:before{content:"\e598"}.fa-snowman:before{content:"\f7d0"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-road-barrier:before{content:"\e562"}.fa-school:before{content:"\f549"}.fa-igloo:before{content:"\f7ae"}.fa-joint:before{content:"\f595"}.fa-angle-right:before{content:"\f105"}.fa-horse:before{content:"\f6f0"}.fa-q:before{content:"\51"}.fa-g:before{content:"\47"}.fa-notes-medical:before{content:"\f481"}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-dong-sign:before{content:"\e169"}.fa-capsules:before{content:"\f46b"}.fa-poo-bolt:before,.fa-poo-storm:before{content:"\f75a"}.fa-face-frown-open:before,.fa-frown-open:before{content:"\f57a"}.fa-hand-point-up:before{content:"\f0a6"}.fa-money-bill:before{content:"\f0d6"}.fa-bookmark:before{content:"\f02e"}.fa-align-justify:before{content:"\f039"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-helmet-un:before{content:"\e503"}.fa-bullseye:before{content:"\f140"}.fa-bacon:before{content:"\f7e5"}.fa-hand-point-down:before{content:"\f0a7"}.fa-arrow-up-from-bracket:before{content:"\e09a"}.fa-folder-blank:before,.fa-folder:before{content:"\f07b"}.fa-file-medical-alt:before,.fa-file-waveform:before{content:"\f478"}.fa-radiation:before{content:"\f7b9"}.fa-chart-simple:before{content:"\e473"}.fa-mars-stroke:before{content:"\f229"}.fa-vial:before{content:"\f492"}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:"\f624"}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:"\e2ca"}.fa-e:before{content:"\45"}.fa-pen-alt:before,.fa-pen-clip:before{content:"\f305"}.fa-bridge-circle-exclamation:before{content:"\e4ca"}.fa-user:before{content:"\f007"}.fa-school-circle-check:before{content:"\e56b"}.fa-dumpster:before{content:"\f793"}.fa-shuttle-van:before,.fa-van-shuttle:before{content:"\f5b6"}.fa-building-user:before{content:"\e4da"}.fa-caret-square-left:before,.fa-square-caret-left:before{content:"\f191"}.fa-highlighter:before{content:"\f591"}.fa-key:before{content:"\f084"}.fa-bullhorn:before{content:"\f0a1"}.fa-globe:before{content:"\f0ac"}.fa-synagogue:before{content:"\f69b"}.fa-person-half-dress:before{content:"\e548"}.fa-road-bridge:before{content:"\e563"}.fa-location-arrow:before{content:"\f124"}.fa-c:before{content:"\43"}.fa-tablet-button:before{content:"\f10a"}.fa-building-lock:before{content:"\e4d6"}.fa-pizza-slice:before{content:"\f818"}.fa-money-bill-wave:before{content:"\f53a"}.fa-area-chart:before,.fa-chart-area:before{content:"\f1fe"}.fa-house-flag:before{content:"\e50d"}.fa-person-circle-minus:before{content:"\e540"}.fa-ban:before,.fa-cancel:before{content:"\f05e"}.fa-camera-rotate:before{content:"\e0d8"}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:"\f5d0"}.fa-star:before{content:"\f005"}.fa-repeat:before{content:"\f363"}.fa-cross:before{content:"\f654"}.fa-box:before{content:"\f466"}.fa-venus-mars:before{content:"\f228"}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:"\f245"}.fa-expand-arrows-alt:before,.fa-maximize:before{content:"\f31e"}.fa-charging-station:before{content:"\f5e7"}.fa-shapes:before,.fa-triangle-circle-square:before{content:"\f61f"}.fa-random:before,.fa-shuffle:before{content:"\f074"}.fa-person-running:before,.fa-running:before{content:"\f70c"}.fa-mobile-retro:before{content:"\e527"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-spider:before{content:"\f717"}.fa-hands-bound:before{content:"\e4f9"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-plane-circle-exclamation:before{content:"\e556"}.fa-x-ray:before{content:"\f497"}.fa-spell-check:before{content:"\f891"}.fa-slash:before{content:"\f715"}.fa-computer-mouse:before,.fa-mouse:before{content:"\f8cc"}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:"\f090"}.fa-shop-slash:before,.fa-store-alt-slash:before{content:"\e070"}.fa-server:before{content:"\f233"}.fa-virus-covid-slash:before{content:"\e4a9"}.fa-shop-lock:before{content:"\e4a5"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-blender-phone:before{content:"\f6b6"}.fa-building-wheat:before{content:"\e4db"}.fa-person-breastfeeding:before{content:"\e53a"}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:"\f2f6"}.fa-venus:before{content:"\f221"}.fa-passport:before{content:"\f5ab"}.fa-heart-pulse:before,.fa-heartbeat:before{content:"\f21e"}.fa-people-carry-box:before,.fa-people-carry:before{content:"\f4ce"}.fa-temperature-high:before{content:"\f769"}.fa-microchip:before{content:"\f2db"}.fa-crown:before{content:"\f521"}.fa-weight-hanging:before{content:"\f5cd"}.fa-xmarks-lines:before{content:"\e59a"}.fa-file-prescription:before{content:"\f572"}.fa-weight-scale:before,.fa-weight:before{content:"\f496"}.fa-user-friends:before,.fa-user-group:before{content:"\f500"}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:"\f15e"}.fa-chess-knight:before{content:"\f441"}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:"\f59b"}.fa-wheelchair:before{content:"\f193"}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:"\f0aa"}.fa-toggle-on:before{content:"\f205"}.fa-person-walking:before,.fa-walking:before{content:"\f554"}.fa-l:before{content:"\4c"}.fa-fire:before{content:"\f06d"}.fa-bed-pulse:before,.fa-procedures:before{content:"\f487"}.fa-shuttle-space:before,.fa-space-shuttle:before{content:"\f197"}.fa-face-laugh:before,.fa-laugh:before{content:"\f599"}.fa-folder-open:before{content:"\f07c"}.fa-heart-circle-plus:before{content:"\e500"}.fa-code-fork:before{content:"\e13b"}.fa-city:before{content:"\f64f"}.fa-microphone-alt:before,.fa-microphone-lines:before{content:"\f3c9"}.fa-pepper-hot:before{content:"\f816"}.fa-unlock:before{content:"\f09c"}.fa-colon-sign:before{content:"\e140"}.fa-headset:before{content:"\f590"}.fa-store-slash:before{content:"\e071"}.fa-road-circle-xmark:before{content:"\e566"}.fa-user-minus:before{content:"\f503"}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:"\f22a"}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:"\f79f"}.fa-clipboard:before{content:"\f328"}.fa-house-circle-exclamation:before{content:"\e50a"}.fa-file-arrow-up:before,.fa-file-upload:before{content:"\f574"}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:"\f1eb"}.fa-bath:before,.fa-bathtub:before{content:"\f2cd"}.fa-underline:before{content:"\f0cd"}.fa-user-edit:before,.fa-user-pen:before{content:"\f4ff"}.fa-signature:before{content:"\f5b7"}.fa-stroopwafel:before{content:"\f551"}.fa-bold:before{content:"\f032"}.fa-anchor-lock:before{content:"\e4ad"}.fa-building-ngo:before{content:"\e4d7"}.fa-manat-sign:before{content:"\e1d5"}.fa-not-equal:before{content:"\f53e"}.fa-border-style:before,.fa-border-top-left:before{content:"\f853"}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:"\f5a0"}.fa-jedi:before{content:"\f669"}.fa-poll:before,.fa-square-poll-vertical:before{content:"\f681"}.fa-mug-hot:before{content:"\f7b6"}.fa-battery-car:before,.fa-car-battery:before{content:"\f5df"}.fa-gift:before{content:"\f06b"}.fa-dice-two:before{content:"\f528"}.fa-chess-queen:before{content:"\f445"}.fa-glasses:before{content:"\f530"}.fa-chess-board:before{content:"\f43c"}.fa-building-circle-check:before{content:"\e4d2"}.fa-person-chalkboard:before{content:"\e53d"}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:"\f22b"}.fa-hand-back-fist:before,.fa-hand-rock:before{content:"\f255"}.fa-caret-square-up:before,.fa-square-caret-up:before{content:"\f151"}.fa-cloud-showers-water:before{content:"\e4e4"}.fa-bar-chart:before,.fa-chart-bar:before{content:"\f080"}.fa-hands-bubbles:before,.fa-hands-wash:before{content:"\e05e"}.fa-less-than-equal:before{content:"\f537"}.fa-train:before{content:"\f238"}.fa-eye-low-vision:before,.fa-low-vision:before{content:"\f2a8"}.fa-crow:before{content:"\f520"}.fa-sailboat:before{content:"\e445"}.fa-window-restore:before{content:"\f2d2"}.fa-plus-square:before,.fa-square-plus:before{content:"\f0fe"}.fa-torii-gate:before{content:"\f6a1"}.fa-frog:before{content:"\f52e"}.fa-bucket:before{content:"\e4cf"}.fa-image:before{content:"\f03e"}.fa-microphone:before{content:"\f130"}.fa-cow:before{content:"\f6c8"}.fa-caret-up:before{content:"\f0d8"}.fa-screwdriver:before{content:"\f54a"}.fa-folder-closed:before{content:"\e185"}.fa-house-tsunami:before{content:"\e515"}.fa-square-nfi:before{content:"\e576"}.fa-arrow-up-from-ground-water:before{content:"\e4b5"}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:"\f57b"}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:"\f2ea"}.fa-columns:before,.fa-table-columns:before{content:"\f0db"}.fa-lemon:before{content:"\f094"}.fa-head-side-mask:before{content:"\e063"}.fa-handshake:before{content:"\f2b5"}.fa-gem:before{content:"\f3a5"}.fa-dolly-box:before,.fa-dolly:before{content:"\f472"}.fa-smoking:before{content:"\f48d"}.fa-compress-arrows-alt:before,.fa-minimize:before{content:"\f78c"}.fa-monument:before{content:"\f5a6"}.fa-snowplow:before{content:"\f7d2"}.fa-angle-double-right:before,.fa-angles-right:before{content:"\f101"}.fa-cannabis:before{content:"\f55f"}.fa-circle-play:before,.fa-play-circle:before{content:"\f144"}.fa-tablets:before{content:"\f490"}.fa-ethernet:before{content:"\f796"}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:"\f153"}.fa-chair:before{content:"\f6c0"}.fa-check-circle:before,.fa-circle-check:before{content:"\f058"}.fa-circle-stop:before,.fa-stop-circle:before{content:"\f28d"}.fa-compass-drafting:before,.fa-drafting-compass:before{content:"\f568"}.fa-plate-wheat:before{content:"\e55a"}.fa-icicles:before{content:"\f7ad"}.fa-person-shelter:before{content:"\e54f"}.fa-neuter:before{content:"\f22c"}.fa-id-badge:before{content:"\f2c1"}.fa-marker:before{content:"\f5a1"}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:"\f59a"}.fa-helicopter-symbol:before{content:"\e502"}.fa-universal-access:before{content:"\f29a"}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:"\f139"}.fa-lari-sign:before{content:"\e1c8"}.fa-volcano:before{content:"\f770"}.fa-person-walking-dashed-line-arrow-right:before{content:"\e553"}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:"\f154"}.fa-viruses:before{content:"\e076"}.fa-square-person-confined:before{content:"\e577"}.fa-user-tie:before{content:"\f508"}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:"\f175"}.fa-tent-arrow-down-to-line:before{content:"\e57e"}.fa-certificate:before{content:"\f0a3"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-suitcase:before{content:"\f0f2"}.fa-person-skating:before,.fa-skating:before{content:"\f7c5"}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:"\f662"}.fa-camera-retro:before{content:"\f083"}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:"\f0ab"}.fa-arrow-right-to-file:before,.fa-file-import:before{content:"\f56f"}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:"\f14c"}.fa-box-open:before{content:"\f49e"}.fa-scroll:before{content:"\f70e"}.fa-spa:before{content:"\f5bb"}.fa-location-pin-lock:before{content:"\e51f"}.fa-pause:before{content:"\f04c"}.fa-hill-avalanche:before{content:"\e507"}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-bomb:before{content:"\f1e2"}.fa-registered:before{content:"\f25d"}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:"\f2bb"}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:"\f516"}.fa-subscript:before{content:"\f12c"}.fa-diamond-turn-right:before,.fa-directions:before{content:"\f5eb"}.fa-burst:before{content:"\e4dc"}.fa-house-laptop:before,.fa-laptop-house:before{content:"\e066"}.fa-face-tired:before,.fa-tired:before{content:"\f5c8"}.fa-money-bills:before{content:"\e1f3"}.fa-smog:before{content:"\f75f"}.fa-crutch:before{content:"\f7f7"}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:"\f0ee"}.fa-palette:before{content:"\f53f"}.fa-arrows-turn-right:before{content:"\e4c0"}.fa-vest:before{content:"\e085"}.fa-ferry:before{content:"\e4ea"}.fa-arrows-down-to-people:before{content:"\e4b9"}.fa-seedling:before,.fa-sprout:before{content:"\f4d8"}.fa-arrows-alt-h:before,.fa-left-right:before{content:"\f337"}.fa-boxes-packing:before{content:"\e4c7"}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:"\f0a8"}.fa-group-arrows-rotate:before{content:"\e4f6"}.fa-bowl-food:before{content:"\e4c6"}.fa-candy-cane:before{content:"\f786"}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:"\f160"}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:"\f76c"}.fa-remove-format:before,.fa-text-slash:before{content:"\f87d"}.fa-face-smile-wink:before,.fa-smile-wink:before{content:"\f4da"}.fa-file-word:before{content:"\f1c2"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-arrows-h:before,.fa-arrows-left-right:before{content:"\f07e"}.fa-house-lock:before{content:"\e510"}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:"\f0ed"}.fa-children:before{content:"\e4e1"}.fa-blackboard:before,.fa-chalkboard:before{content:"\f51b"}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:"\f4fa"}.fa-envelope-open:before{content:"\f2b6"}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:"\e05f"}.fa-mattress-pillow:before{content:"\e525"}.fa-guarani-sign:before{content:"\e19a"}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:"\f021"}.fa-fire-extinguisher:before{content:"\f134"}.fa-cruzeiro-sign:before{content:"\e152"}.fa-greater-than-equal:before{content:"\f532"}.fa-shield-alt:before,.fa-shield-halved:before{content:"\f3ed"}.fa-atlas:before,.fa-book-atlas:before{content:"\f558"}.fa-virus:before{content:"\e074"}.fa-envelope-circle-check:before{content:"\e4e8"}.fa-layer-group:before{content:"\f5fd"}.fa-arrows-to-dot:before{content:"\e4be"}.fa-archway:before{content:"\f557"}.fa-heart-circle-check:before{content:"\e4fd"}.fa-house-chimney-crack:before,.fa-house-damage:before{content:"\f6f1"}.fa-file-archive:before,.fa-file-zipper:before{content:"\f1c6"}.fa-square:before{content:"\f0c8"}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:"\f000"}.fa-couch:before{content:"\f4b8"}.fa-cedi-sign:before{content:"\e0df"}.fa-italic:before{content:"\f033"}.fa-church:before{content:"\f51d"}.fa-comments-dollar:before{content:"\f653"}.fa-democrat:before{content:"\f747"}.fa-z:before{content:"\5a"}.fa-person-skiing:before,.fa-skiing:before{content:"\f7c9"}.fa-road-lock:before{content:"\e567"}.fa-a:before{content:"\41"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:"\e03f"}.fa-feather-alt:before,.fa-feather-pointed:before{content:"\f56b"}.fa-p:before{content:"\50"}.fa-snowflake:before{content:"\f2dc"}.fa-newspaper:before{content:"\f1ea"}.fa-ad:before,.fa-rectangle-ad:before{content:"\f641"}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:"\f0a9"}.fa-filter-circle-xmark:before{content:"\e17b"}.fa-locust:before{content:"\e520"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:"\f0cb"}.fa-person-dress-burst:before{content:"\e544"}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:"\f53d"}.fa-vector-square:before{content:"\f5cb"}.fa-bread-slice:before{content:"\f7ec"}.fa-language:before{content:"\f1ab"}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:"\f598"}.fa-filter:before{content:"\f0b0"}.fa-question:before{content:"\3f"}.fa-file-signature:before{content:"\f573"}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:"\f0b2"}.fa-house-chimney-user:before{content:"\e065"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-puzzle-piece:before{content:"\f12e"}.fa-money-check:before{content:"\f53c"}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:"\f5c0"}.fa-code:before{content:"\f121"}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:"\f7a0"}.fa-building-circle-exclamation:before{content:"\e4d3"}.fa-magnifying-glass-chart:before{content:"\e522"}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:"\f08e"}.fa-cubes-stacked:before{content:"\e4e6"}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:"\f159"}.fa-virus-covid:before{content:"\e4a8"}.fa-austral-sign:before{content:"\e0a9"}.fa-f:before{content:"\46"}.fa-leaf:before{content:"\f06c"}.fa-road:before{content:"\f018"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-person-circle-plus:before{content:"\e541"}.fa-chart-pie:before,.fa-pie-chart:before{content:"\f200"}.fa-bolt-lightning:before{content:"\e0b7"}.fa-sack-xmark:before{content:"\e56a"}.fa-file-excel:before{content:"\f1c3"}.fa-file-contract:before{content:"\f56c"}.fa-fish-fins:before{content:"\e4f2"}.fa-building-flag:before{content:"\e4d5"}.fa-face-grin-beam:before,.fa-grin-beam:before{content:"\f582"}.fa-object-ungroup:before{content:"\f248"}.fa-poop:before{content:"\f619"}.fa-location-pin:before,.fa-map-marker:before{content:"\f041"}.fa-kaaba:before{content:"\f66b"}.fa-toilet-paper:before{content:"\f71e"}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:"\f807"}.fa-eject:before{content:"\f052"}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:"\f35a"}.fa-plane-circle-check:before{content:"\e555"}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-object-group:before{content:"\f247"}.fa-chart-line:before,.fa-line-chart:before{content:"\f201"}.fa-mask-ventilator:before{content:"\e524"}.fa-arrow-right:before{content:"\f061"}.fa-map-signs:before,.fa-signs-post:before{content:"\f277"}.fa-cash-register:before{content:"\f788"}.fa-person-circle-question:before{content:"\e542"}.fa-h:before{content:"\48"}.fa-tarp:before{content:"\e57b"}.fa-screwdriver-wrench:before,.fa-tools:before{content:"\f7d9"}.fa-arrows-to-eye:before{content:"\e4bf"}.fa-plug-circle-bolt:before{content:"\e55b"}.fa-heart:before{content:"\f004"}.fa-mars-and-venus:before{content:"\f224"}.fa-home-user:before,.fa-house-user:before{content:"\e1b0"}.fa-dumpster-fire:before{content:"\f794"}.fa-house-crack:before{content:"\e3b1"}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:"\f561"}.fa-face-surprise:before,.fa-surprise:before{content:"\f5c2"}.fa-bottle-water:before{content:"\e4c5"}.fa-circle-pause:before,.fa-pause-circle:before{content:"\f28b"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-apple-alt:before,.fa-apple-whole:before{content:"\f5d1"}.fa-kitchen-set:before{content:"\e51a"}.fa-r:before{content:"\52"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-cube:before{content:"\f1b2"}.fa-bitcoin-sign:before{content:"\e0b4"}.fa-shield-dog:before{content:"\e573"}.fa-solar-panel:before{content:"\f5ba"}.fa-lock-open:before{content:"\f3c1"}.fa-elevator:before{content:"\e16d"}.fa-money-bill-transfer:before{content:"\e528"}.fa-money-bill-trend-up:before{content:"\e529"}.fa-house-flood-water-circle-arrow-right:before{content:"\e50f"}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:"\f682"}.fa-circle:before{content:"\f111"}.fa-backward-fast:before,.fa-fast-backward:before{content:"\f049"}.fa-recycle:before{content:"\f1b8"}.fa-user-astronaut:before{content:"\f4fb"}.fa-plane-slash:before{content:"\e069"}.fa-trademark:before{content:"\f25c"}.fa-basketball-ball:before,.fa-basketball:before{content:"\f434"}.fa-satellite-dish:before{content:"\f7c0"}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:"\f35b"}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:"\f3cd"}.fa-volume-high:before,.fa-volume-up:before{content:"\f028"}.fa-users-rays:before{content:"\e593"}.fa-wallet:before{content:"\f555"}.fa-clipboard-check:before{content:"\f46c"}.fa-file-audio:before{content:"\f1c7"}.fa-burger:before,.fa-hamburger:before{content:"\f805"}.fa-wrench:before{content:"\f0ad"}.fa-bugs:before{content:"\e4d0"}.fa-rupee-sign:before,.fa-rupee:before{content:"\f156"}.fa-file-image:before{content:"\f1c5"}.fa-circle-question:before,.fa-question-circle:before{content:"\f059"}.fa-plane-departure:before{content:"\f5b0"}.fa-handshake-slash:before{content:"\e060"}.fa-book-bookmark:before{content:"\e0bb"}.fa-code-branch:before{content:"\f126"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-bridge:before{content:"\e4c8"}.fa-phone-alt:before,.fa-phone-flip:before{content:"\f879"}.fa-truck-front:before{content:"\e2b7"}.fa-cat:before{content:"\f6be"}.fa-anchor-circle-exclamation:before{content:"\e4ab"}.fa-truck-field:before{content:"\e58d"}.fa-route:before{content:"\f4d7"}.fa-clipboard-question:before{content:"\e4e3"}.fa-panorama:before{content:"\e209"}.fa-comment-medical:before{content:"\f7f5"}.fa-teeth-open:before{content:"\f62f"}.fa-file-circle-minus:before{content:"\e4ed"}.fa-tags:before{content:"\f02c"}.fa-wine-glass:before{content:"\f4e3"}.fa-fast-forward:before,.fa-forward-fast:before{content:"\f050"}.fa-face-meh-blank:before,.fa-meh-blank:before{content:"\f5a4"}.fa-parking:before,.fa-square-parking:before{content:"\f540"}.fa-house-signal:before{content:"\e012"}.fa-bars-progress:before,.fa-tasks-alt:before{content:"\f828"}.fa-faucet-drip:before{content:"\e006"}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:"\f474"}.fa-ban-smoking:before,.fa-smoking-ban:before{content:"\f54d"}.fa-terminal:before{content:"\f120"}.fa-mobile-button:before{content:"\f10b"}.fa-house-medical-flag:before{content:"\e514"}.fa-basket-shopping:before,.fa-shopping-basket:before{content:"\f291"}.fa-tape:before{content:"\f4db"}.fa-bus-alt:before,.fa-bus-simple:before{content:"\f55e"}.fa-eye:before{content:"\f06e"}.fa-face-sad-cry:before,.fa-sad-cry:before{content:"\f5b3"}.fa-audio-description:before{content:"\f29e"}.fa-person-military-to-person:before{content:"\e54c"}.fa-file-shield:before{content:"\e4f0"}.fa-user-slash:before{content:"\f506"}.fa-pen:before{content:"\f304"}.fa-tower-observation:before{content:"\e586"}.fa-file-code:before{content:"\f1c9"}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:"\f012"}.fa-bus:before{content:"\f207"}.fa-heart-circle-xmark:before{content:"\e501"}.fa-home-lg:before,.fa-house-chimney:before{content:"\e3af"}.fa-window-maximize:before{content:"\f2d0"}.fa-face-frown:before,.fa-frown:before{content:"\f119"}.fa-prescription:before{content:"\f5b1"}.fa-shop:before,.fa-store-alt:before{content:"\f54f"}.fa-floppy-disk:before,.fa-save:before{content:"\f0c7"}.fa-vihara:before{content:"\f6a7"}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:"\f515"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-comment-dots:before,.fa-commenting:before{content:"\f4ad"}.fa-plant-wilt:before{content:"\e5aa"}.fa-diamond:before{content:"\f219"}.fa-face-grin-squint:before,.fa-grin-squint:before{content:"\f585"}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:"\f4c0"}.fa-bacterium:before{content:"\e05a"}.fa-hand-pointer:before{content:"\f25a"}.fa-drum-steelpan:before{content:"\f56a"}.fa-hand-scissors:before{content:"\f257"}.fa-hands-praying:before,.fa-praying-hands:before{content:"\f684"}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:"\f01e"}.fa-biohazard:before{content:"\f780"}.fa-location-crosshairs:before,.fa-location:before{content:"\f601"}.fa-mars-double:before{content:"\f227"}.fa-child-dress:before{content:"\e59c"}.fa-users-between-lines:before{content:"\e591"}.fa-lungs-virus:before{content:"\e067"}.fa-face-grin-tears:before,.fa-grin-tears:before{content:"\f588"}.fa-phone:before{content:"\f095"}.fa-calendar-times:before,.fa-calendar-xmark:before{content:"\f273"}.fa-child-reaching:before{content:"\e59d"}.fa-head-side-virus:before{content:"\e064"}.fa-user-cog:before,.fa-user-gear:before{content:"\f4fe"}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:"\f163"}.fa-door-closed:before{content:"\f52a"}.fa-shield-virus:before{content:"\e06c"}.fa-dice-six:before{content:"\f526"}.fa-mosquito-net:before{content:"\e52c"}.fa-bridge-water:before{content:"\e4ce"}.fa-person-booth:before{content:"\f756"}.fa-text-width:before{content:"\f035"}.fa-hat-wizard:before{content:"\f6e8"}.fa-pen-fancy:before{content:"\f5ac"}.fa-digging:before,.fa-person-digging:before{content:"\f85e"}.fa-trash:before{content:"\f1f8"}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:"\f629"}.fa-book-medical:before{content:"\f7e6"}.fa-poo:before{content:"\f2fe"}.fa-quote-right-alt:before,.fa-quote-right:before{content:"\f10e"}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:"\f553"}.fa-cubes:before{content:"\f1b3"}.fa-divide:before{content:"\f529"}.fa-tenge-sign:before,.fa-tenge:before{content:"\f7d7"}.fa-headphones:before{content:"\f025"}.fa-hands-holding:before{content:"\f4c2"}.fa-hands-clapping:before{content:"\e1a8"}.fa-republican:before{content:"\f75e"}.fa-arrow-left:before{content:"\f060"}.fa-person-circle-xmark:before{content:"\e543"}.fa-ruler:before{content:"\f545"}.fa-align-left:before{content:"\f036"}.fa-dice-d6:before{content:"\f6d1"}.fa-restroom:before{content:"\f7bd"}.fa-j:before{content:"\4a"}.fa-users-viewfinder:before{content:"\e595"}.fa-file-video:before{content:"\f1c8"}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:"\f35d"}.fa-table-cells:before,.fa-th:before{content:"\f00a"}.fa-file-pdf:before{content:"\f1c1"}.fa-bible:before,.fa-book-bible:before{content:"\f647"}.fa-o:before{content:"\4f"}.fa-medkit:before,.fa-suitcase-medical:before{content:"\f0fa"}.fa-user-secret:before{content:"\f21b"}.fa-otter:before{content:"\f700"}.fa-female:before,.fa-person-dress:before{content:"\f182"}.fa-comment-dollar:before{content:"\f651"}.fa-briefcase-clock:before,.fa-business-time:before{content:"\f64a"}.fa-table-cells-large:before,.fa-th-large:before{content:"\f009"}.fa-book-tanakh:before,.fa-tanakh:before{content:"\f827"}.fa-phone-volume:before,.fa-volume-control-phone:before{content:"\f2a0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-clipboard-user:before{content:"\f7f3"}.fa-child:before{content:"\f1ae"}.fa-lira-sign:before{content:"\f195"}.fa-satellite:before{content:"\f7bf"}.fa-plane-lock:before{content:"\e558"}.fa-tag:before{content:"\f02b"}.fa-comment:before{content:"\f075"}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:"\f1fd"}.fa-envelope:before{content:"\f0e0"}.fa-angle-double-up:before,.fa-angles-up:before{content:"\f102"}.fa-paperclip:before{content:"\f0c6"}.fa-arrow-right-to-city:before{content:"\e4b3"}.fa-ribbon:before{content:"\f4d6"}.fa-lungs:before{content:"\f604"}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-litecoin-sign:before{content:"\e1d3"}.fa-border-none:before{content:"\f850"}.fa-circle-nodes:before{content:"\e4e2"}.fa-parachute-box:before{content:"\f4cd"}.fa-indent:before{content:"\f03c"}.fa-truck-field-un:before{content:"\e58e"}.fa-hourglass-empty:before,.fa-hourglass:before{content:"\f254"}.fa-mountain:before{content:"\f6fc"}.fa-user-doctor:before,.fa-user-md:before{content:"\f0f0"}.fa-circle-info:before,.fa-info-circle:before{content:"\f05a"}.fa-cloud-meatball:before{content:"\f73b"}.fa-camera-alt:before,.fa-camera:before{content:"\f030"}.fa-square-virus:before{content:"\e578"}.fa-meteor:before{content:"\f753"}.fa-car-on:before{content:"\e4dd"}.fa-sleigh:before{content:"\f7cc"}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:"\f162"}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:"\f4c1"}.fa-water:before{content:"\f773"}.fa-calendar-check:before{content:"\f274"}.fa-braille:before{content:"\f2a1"}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:"\f486"}.fa-landmark:before{content:"\f66f"}.fa-truck:before{content:"\f0d1"}.fa-crosshairs:before{content:"\f05b"}.fa-person-cane:before{content:"\e53c"}.fa-tent:before{content:"\e57d"}.fa-vest-patches:before{content:"\e086"}.fa-check-double:before{content:"\f560"}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:"\f15d"}.fa-money-bill-wheat:before{content:"\e52a"}.fa-cookie:before{content:"\f563"}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-hard-drive:before,.fa-hdd:before{content:"\f0a0"}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:"\f586"}.fa-dumbbell:before{content:"\f44b"}.fa-list-alt:before,.fa-rectangle-list:before{content:"\f022"}.fa-tarp-droplet:before{content:"\e57c"}.fa-house-medical-circle-check:before{content:"\e511"}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:"\f7ca"}.fa-calendar-plus:before{content:"\f271"}.fa-plane-arrival:before{content:"\f5af"}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:"\f359"}.fa-subway:before,.fa-train-subway:before{content:"\f239"}.fa-chart-gantt:before{content:"\e0e4"}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:"\e1bc"}.fa-crop-alt:before,.fa-crop-simple:before{content:"\f565"}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:"\f3d1"}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-dna:before{content:"\f471"}.fa-virus-slash:before{content:"\e075"}.fa-minus:before,.fa-subtract:before{content:"\f068"}.fa-chess:before{content:"\f439"}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:"\f177"}.fa-plug-circle-check:before{content:"\e55c"}.fa-street-view:before{content:"\f21d"}.fa-franc-sign:before{content:"\e18f"}.fa-volume-off:before{content:"\f026"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:"\f2a3"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-droplet-slash:before,.fa-tint-slash:before{content:"\f5c7"}.fa-mosque:before{content:"\f678"}.fa-mosquito:before{content:"\e52b"}.fa-star-of-david:before{content:"\f69a"}.fa-person-military-rifle:before{content:"\e54b"}.fa-cart-shopping:before,.fa-shopping-cart:before{content:"\f07a"}.fa-vials:before{content:"\f493"}.fa-plug-circle-plus:before{content:"\e55f"}.fa-place-of-worship:before{content:"\f67f"}.fa-grip-vertical:before{content:"\f58e"}.fa-arrow-turn-up:before,.fa-level-up:before{content:"\f148"}.fa-u:before{content:"\55"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:"\f698"}.fa-clock-four:before,.fa-clock:before{content:"\f017"}.fa-backward-step:before,.fa-step-backward:before{content:"\f048"}.fa-pallet:before{content:"\f482"}.fa-faucet:before{content:"\e005"}.fa-baseball-bat-ball:before{content:"\f432"}.fa-s:before{content:"\53"}.fa-timeline:before{content:"\e29c"}.fa-keyboard:before{content:"\f11c"}.fa-caret-down:before{content:"\f0d7"}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:"\f7f2"}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:"\f3cf"}.fa-plane-up:before{content:"\e22d"}.fa-piggy-bank:before{content:"\f4d3"}.fa-battery-3:before,.fa-battery-half:before{content:"\f242"}.fa-mountain-city:before{content:"\e52e"}.fa-coins:before{content:"\f51e"}.fa-khanda:before{content:"\f66d"}.fa-sliders-h:before,.fa-sliders:before{content:"\f1de"}.fa-folder-tree:before{content:"\f802"}.fa-network-wired:before{content:"\f6ff"}.fa-map-pin:before{content:"\f276"}.fa-hamsa:before{content:"\f665"}.fa-cent-sign:before{content:"\e3f5"}.fa-flask:before{content:"\f0c3"}.fa-person-pregnant:before{content:"\e31e"}.fa-wand-sparkles:before{content:"\f72b"}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:"\f142"}.fa-ticket:before{content:"\f145"}.fa-power-off:before{content:"\f011"}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:"\f30b"}.fa-flag-usa:before{content:"\f74d"}.fa-laptop-file:before{content:"\e51d"}.fa-teletype:before,.fa-tty:before{content:"\f1e4"}.fa-diagram-next:before{content:"\e476"}.fa-person-rifle:before{content:"\e54e"}.fa-house-medical-circle-exclamation:before{content:"\e512"}.fa-closed-captioning:before{content:"\f20a"}.fa-hiking:before,.fa-person-hiking:before{content:"\f6ec"}.fa-venus-double:before{content:"\f226"}.fa-images:before{content:"\f302"}.fa-calculator:before{content:"\f1ec"}.fa-people-pulling:before{content:"\e535"}.fa-n:before{content:"\4e"}.fa-cable-car:before,.fa-tram:before{content:"\f7da"}.fa-cloud-rain:before{content:"\f73d"}.fa-building-circle-xmark:before{content:"\e4d4"}.fa-ship:before{content:"\f21a"}.fa-arrows-down-to-line:before{content:"\e4b8"}.fa-download:before{content:"\f019"}.fa-face-grin:before,.fa-grin:before{content:"\f580"}.fa-backspace:before,.fa-delete-left:before{content:"\f55a"}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:"\f1fb"}.fa-file-circle-check:before{content:"\e5a0"}.fa-forward:before{content:"\f04e"}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:"\f3ce"}.fa-face-meh:before,.fa-meh:before{content:"\f11a"}.fa-align-center:before{content:"\f037"}.fa-book-dead:before,.fa-book-skull:before{content:"\f6b7"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-heart-circle-exclamation:before{content:"\e4fe"}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:"\f015"}.fa-calendar-week:before{content:"\f784"}.fa-laptop-medical:before{content:"\f812"}.fa-b:before{content:"\42"}.fa-file-medical:before{content:"\f477"}.fa-dice-one:before{content:"\f525"}.fa-kiwi-bird:before{content:"\f535"}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:"\f0ec"}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:"\f2f9"}.fa-cutlery:before,.fa-utensils:before{content:"\f2e7"}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:"\f161"}.fa-mill-sign:before{content:"\e1ed"}.fa-bowl-rice:before{content:"\e2eb"}.fa-skull:before{content:"\f54c"}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:"\f519"}.fa-truck-pickup:before{content:"\f63c"}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:"\f30c"}.fa-stop:before{content:"\f04d"}.fa-code-merge:before{content:"\f387"}.fa-upload:before{content:"\f093"}.fa-hurricane:before{content:"\f751"}.fa-mound:before{content:"\e52d"}.fa-toilet-portable:before{content:"\e583"}.fa-compact-disc:before{content:"\f51f"}.fa-file-arrow-down:before,.fa-file-download:before{content:"\f56d"}.fa-caravan:before{content:"\f8ff"}.fa-shield-cat:before{content:"\e572"}.fa-bolt:before,.fa-zap:before{content:"\f0e7"}.fa-glass-water:before{content:"\e4f4"}.fa-oil-well:before{content:"\e532"}.fa-vault:before{content:"\e2c5"}.fa-mars:before{content:"\f222"}.fa-toilet:before{content:"\f7d8"}.fa-plane-circle-xmark:before{content:"\e557"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:"\f158"}.fa-sun:before{content:"\f185"}.fa-guitar:before{content:"\f7a6"}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:"\f59c"}.fa-horse-head:before{content:"\f7ab"}.fa-bore-hole:before{content:"\e4c3"}.fa-industry:before{content:"\f275"}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:"\f358"}.fa-arrows-turn-to-dots:before{content:"\e4c1"}.fa-florin-sign:before{content:"\e184"}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:"\f884"}.fa-less-than:before{content:"\3c"}.fa-angle-down:before{content:"\f107"}.fa-car-tunnel:before{content:"\e4de"}.fa-head-side-cough:before{content:"\e061"}.fa-grip-lines:before{content:"\f7a4"}.fa-thumbs-down:before{content:"\f165"}.fa-user-lock:before{content:"\f502"}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:"\f178"}.fa-anchor-circle-xmark:before{content:"\e4ac"}.fa-ellipsis-h:before,.fa-ellipsis:before{content:"\f141"}.fa-chess-pawn:before{content:"\f443"}.fa-first-aid:before,.fa-kit-medical:before{content:"\f479"}.fa-person-through-window:before{content:"\e5a9"}.fa-toolbox:before{content:"\f552"}.fa-hands-holding-circle:before{content:"\e4fb"}.fa-bug:before{content:"\f188"}.fa-credit-card-alt:before,.fa-credit-card:before{content:"\f09d"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-hand-holding-hand:before{content:"\e4f7"}.fa-book-open-reader:before,.fa-book-reader:before{content:"\f5da"}.fa-mountain-sun:before{content:"\e52f"}.fa-arrows-left-right-to-line:before{content:"\e4ba"}.fa-dice-d20:before{content:"\f6cf"}.fa-truck-droplet:before{content:"\e58c"}.fa-file-circle-xmark:before{content:"\e5a1"}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:"\e040"}.fa-medal:before{content:"\f5a2"}.fa-bed:before{content:"\f236"}.fa-h-square:before,.fa-square-h:before{content:"\f0fd"}.fa-podcast:before{content:"\f2ce"}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-bell:before{content:"\f0f3"}.fa-superscript:before{content:"\f12b"}.fa-plug-circle-xmark:before{content:"\e560"}.fa-star-of-life:before{content:"\f621"}.fa-phone-slash:before{content:"\f3dd"}.fa-paint-roller:before{content:"\f5aa"}.fa-hands-helping:before,.fa-handshake-angle:before{content:"\f4c4"}.fa-location-dot:before,.fa-map-marker-alt:before{content:"\f3c5"}.fa-file:before{content:"\f15b"}.fa-greater-than:before{content:"\3e"}.fa-person-swimming:before,.fa-swimmer:before{content:"\f5c4"}.fa-arrow-down:before{content:"\f063"}.fa-droplet:before,.fa-tint:before{content:"\f043"}.fa-eraser:before{content:"\f12d"}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:"\f57d"}.fa-person-burst:before{content:"\e53b"}.fa-dove:before{content:"\f4ba"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-socks:before{content:"\f696"}.fa-inbox:before{content:"\f01c"}.fa-section:before{content:"\e447"}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:"\f625"}.fa-envelope-open-text:before{content:"\f658"}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:"\f0f8"}.fa-wine-bottle:before{content:"\f72f"}.fa-chess-rook:before{content:"\f447"}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:"\f550"}.fa-dharmachakra:before{content:"\f655"}.fa-hotdog:before{content:"\f80f"}.fa-blind:before,.fa-person-walking-with-cane:before{content:"\f29d"}.fa-drum:before{content:"\f569"}.fa-ice-cream:before{content:"\f810"}.fa-heart-circle-bolt:before{content:"\e4fc"}.fa-fax:before{content:"\f1ac"}.fa-paragraph:before{content:"\f1dd"}.fa-check-to-slot:before,.fa-vote-yea:before{content:"\f772"}.fa-star-half:before{content:"\f089"}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:"\f468"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:"\f2a2"}.fa-tree-city:before{content:"\e587"}.fa-play:before{content:"\f04b"}.fa-font:before{content:"\f031"}.fa-rupiah-sign:before{content:"\e23d"}.fa-magnifying-glass:before,.fa-search:before{content:"\f002"}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:"\f45d"}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:"\f470"}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:"\f82a"}.fa-naira-sign:before{content:"\e1f6"}.fa-cart-arrow-down:before{content:"\f218"}.fa-walkie-talkie:before{content:"\f8ef"}.fa-file-edit:before,.fa-file-pen:before{content:"\f31c"}.fa-receipt:before{content:"\f543"}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:"\f14b"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-person-circle-exclamation:before{content:"\e53f"}.fa-chevron-down:before{content:"\f078"}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-skull-crossbones:before{content:"\f714"}.fa-code-compare:before{content:"\e13a"}.fa-list-dots:before,.fa-list-ul:before{content:"\f0ca"}.fa-school-lock:before{content:"\e56f"}.fa-tower-cell:before{content:"\e585"}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:"\f309"}.fa-ranking-star:before{content:"\e561"}.fa-chess-king:before{content:"\f43f"}.fa-person-harassing:before{content:"\e549"}.fa-brazilian-real-sign:before{content:"\e46c"}.fa-landmark-alt:before,.fa-landmark-dome:before{content:"\f752"}.fa-arrow-up:before{content:"\f062"}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:"\f26c"}.fa-shrimp:before{content:"\e448"}.fa-list-check:before,.fa-tasks:before{content:"\f0ae"}.fa-jug-detergent:before{content:"\e519"}.fa-circle-user:before,.fa-user-circle:before{content:"\f2bd"}.fa-user-shield:before{content:"\f505"}.fa-wind:before{content:"\f72e"}.fa-car-burst:before,.fa-car-crash:before{content:"\f5e1"}.fa-y:before{content:"\59"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:"\f7ce"}.fa-shipping-fast:before,.fa-truck-fast:before{content:"\f48b"}.fa-fish:before{content:"\f578"}.fa-user-graduate:before{content:"\f501"}.fa-adjust:before,.fa-circle-half-stroke:before{content:"\f042"}.fa-clapperboard:before{content:"\e131"}.fa-circle-radiation:before,.fa-radiation-alt:before{content:"\f7ba"}.fa-baseball-ball:before,.fa-baseball:before{content:"\f433"}.fa-jet-fighter-up:before{content:"\e518"}.fa-diagram-project:before,.fa-project-diagram:before{content:"\f542"}.fa-copy:before{content:"\f0c5"}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:"\f6a9"}.fa-hand-sparkles:before{content:"\e05d"}.fa-grip-horizontal:before,.fa-grip:before{content:"\f58d"}.fa-share-from-square:before,.fa-share-square:before{content:"\f14d"}.fa-child-combatant:before,.fa-child-rifle:before{content:"\e4e0"}.fa-gun:before{content:"\e19b"}.fa-phone-square:before,.fa-square-phone:before{content:"\f098"}.fa-add:before,.fa-plus:before{content:"\2b"}.fa-expand:before{content:"\f065"}.fa-computer:before{content:"\e4e5"}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:"\f00d"}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:"\f047"}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:"\f51c"}.fa-peso-sign:before{content:"\e222"}.fa-building-shield:before{content:"\e4d8"}.fa-baby:before{content:"\f77c"}.fa-users-line:before{content:"\e592"}.fa-quote-left-alt:before,.fa-quote-left:before{content:"\f10d"}.fa-tractor:before{content:"\f722"}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:"\f829"}.fa-arrow-down-up-lock:before{content:"\e4b0"}.fa-lines-leaning:before{content:"\e51e"}.fa-ruler-combined:before{content:"\f546"}.fa-copyright:before{content:"\f1f9"}.fa-equals:before{content:"\3d"}.fa-blender:before{content:"\f517"}.fa-teeth:before{content:"\f62e"}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:"\f20b"}.fa-map:before{content:"\f279"}.fa-rocket:before{content:"\f135"}.fa-photo-film:before,.fa-photo-video:before{content:"\f87c"}.fa-folder-minus:before{content:"\f65d"}.fa-store:before{content:"\f54e"}.fa-arrow-trend-up:before{content:"\e098"}.fa-plug-circle-minus:before{content:"\e55e"}.fa-sign-hanging:before,.fa-sign:before{content:"\f4d9"}.fa-bezier-curve:before{content:"\f55b"}.fa-bell-slash:before{content:"\f1f6"}.fa-tablet-android:before,.fa-tablet:before{content:"\f3fb"}.fa-school-flag:before{content:"\e56e"}.fa-fill:before{content:"\f575"}.fa-angle-up:before{content:"\f106"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-holly-berry:before{content:"\f7aa"}.fa-chevron-left:before{content:"\f053"}.fa-bacteria:before{content:"\e059"}.fa-hand-lizard:before{content:"\f258"}.fa-notdef:before{content:"\e1fe"}.fa-disease:before{content:"\f7fa"}.fa-briefcase-medical:before{content:"\f469"}.fa-genderless:before{content:"\f22d"}.fa-chevron-right:before{content:"\f054"}.fa-retweet:before{content:"\f079"}.fa-car-alt:before,.fa-car-rear:before{content:"\f5de"}.fa-pump-soap:before{content:"\e06b"}.fa-video-slash:before{content:"\f4e2"}.fa-battery-2:before,.fa-battery-quarter:before{content:"\f243"}.fa-radio:before{content:"\f8d7"}.fa-baby-carriage:before,.fa-carriage-baby:before{content:"\f77d"}.fa-traffic-light:before{content:"\f637"}.fa-thermometer:before{content:"\f491"}.fa-vr-cardboard:before{content:"\f729"}.fa-hand-middle-finger:before{content:"\f806"}.fa-percent:before,.fa-percentage:before{content:"\25"}.fa-truck-moving:before{content:"\f4df"}.fa-glass-water-droplet:before{content:"\e4f5"}.fa-display:before{content:"\e163"}.fa-face-smile:before,.fa-smile:before{content:"\f118"}.fa-thumb-tack:before,.fa-thumbtack:before{content:"\f08d"}.fa-trophy:before{content:"\f091"}.fa-person-praying:before,.fa-pray:before{content:"\f683"}.fa-hammer:before{content:"\f6e3"}.fa-hand-peace:before{content:"\f25b"}.fa-rotate:before,.fa-sync-alt:before{content:"\f2f1"}.fa-spinner:before{content:"\f110"}.fa-robot:before{content:"\f544"}.fa-peace:before{content:"\f67c"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-warehouse:before{content:"\f494"}.fa-arrow-up-right-dots:before{content:"\e4b7"}.fa-splotch:before{content:"\f5bc"}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:"\f584"}.fa-dice-four:before{content:"\f524"}.fa-sim-card:before{content:"\f7c4"}.fa-transgender-alt:before,.fa-transgender:before{content:"\f225"}.fa-mercury:before{content:"\f223"}.fa-arrow-turn-down:before,.fa-level-down:before{content:"\f149"}.fa-person-falling-burst:before{content:"\e547"}.fa-award:before{content:"\f559"}.fa-ticket-alt:before,.fa-ticket-simple:before{content:"\f3ff"}.fa-building:before{content:"\f1ad"}.fa-angle-double-left:before,.fa-angles-left:before{content:"\f100"}.fa-qrcode:before{content:"\f029"}.fa-clock-rotate-left:before,.fa-history:before{content:"\f1da"}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:"\f583"}.fa-arrow-right-from-file:before,.fa-file-export:before{content:"\f56e"}.fa-shield-blank:before,.fa-shield:before{content:"\f132"}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:"\f885"}.fa-house-medical:before{content:"\e3b2"}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:"\f450"}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:"\f137"}.fa-house-chimney-window:before{content:"\e00d"}.fa-pen-nib:before{content:"\f5ad"}.fa-tent-arrow-turn-left:before{content:"\e580"}.fa-tents:before{content:"\e582"}.fa-magic:before,.fa-wand-magic:before{content:"\f0d0"}.fa-dog:before{content:"\f6d3"}.fa-carrot:before{content:"\f787"}.fa-moon:before{content:"\f186"}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:"\f5ce"}.fa-cheese:before{content:"\f7ef"}.fa-yin-yang:before{content:"\f6ad"}.fa-music:before{content:"\f001"}.fa-code-commit:before{content:"\f386"}.fa-temperature-low:before{content:"\f76b"}.fa-biking:before,.fa-person-biking:before{content:"\f84a"}.fa-broom:before{content:"\f51a"}.fa-shield-heart:before{content:"\e574"}.fa-gopuram:before{content:"\f664"}.fa-earth-oceania:before,.fa-globe-oceania:before{content:"\e47b"}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:"\f2d3"}.fa-hashtag:before{content:"\23"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:"\f424"}.fa-oil-can:before{content:"\f613"}.fa-t:before{content:"\54"}.fa-hippo:before{content:"\f6ed"}.fa-chart-column:before{content:"\e0e3"}.fa-infinity:before{content:"\f534"}.fa-vial-circle-check:before{content:"\e596"}.fa-person-arrow-down-to-line:before{content:"\e538"}.fa-voicemail:before{content:"\f897"}.fa-fan:before{content:"\f863"}.fa-person-walking-luggage:before{content:"\e554"}.fa-arrows-alt-v:before,.fa-up-down:before{content:"\f338"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-calendar:before{content:"\f133"}.fa-trailer:before{content:"\e041"}.fa-bahai:before,.fa-haykal:before{content:"\f666"}.fa-sd-card:before{content:"\f7c2"}.fa-dragon:before{content:"\f6d5"}.fa-shoe-prints:before{content:"\f54b"}.fa-circle-plus:before,.fa-plus-circle:before{content:"\f055"}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:"\f58b"}.fa-hand-holding:before{content:"\f4bd"}.fa-plug-circle-exclamation:before{content:"\e55d"}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:"\f127"}.fa-clone:before{content:"\f24d"}.fa-person-walking-arrow-loop-left:before{content:"\e551"}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:"\f7e4"}.fa-tornado:before{content:"\f76f"}.fa-file-circle-plus:before{content:"\e494"}.fa-book-quran:before,.fa-quran:before{content:"\f687"}.fa-anchor:before{content:"\f13d"}.fa-border-all:before{content:"\f84c"}.fa-angry:before,.fa-face-angry:before{content:"\f556"}.fa-cookie-bite:before{content:"\f564"}.fa-arrow-trend-down:before{content:"\e097"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-draw-polygon:before{content:"\f5ee"}.fa-balance-scale:before,.fa-scale-balanced:before{content:"\f24e"}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:"\f62a"}.fa-shower:before{content:"\f2cc"}.fa-desktop-alt:before,.fa-desktop:before{content:"\f390"}.fa-m:before{content:"\4d"}.fa-table-list:before,.fa-th-list:before{content:"\f00b"}.fa-comment-sms:before,.fa-sms:before{content:"\f7cd"}.fa-book:before{content:"\f02d"}.fa-user-plus:before{content:"\f234"}.fa-check:before{content:"\f00c"}.fa-battery-4:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-house-circle-check:before{content:"\e509"}.fa-angle-left:before{content:"\f104"}.fa-diagram-successor:before{content:"\e47a"}.fa-truck-arrow-right:before{content:"\e58b"}.fa-arrows-split-up-and-left:before{content:"\e4bc"}.fa-fist-raised:before,.fa-hand-fist:before{content:"\f6de"}.fa-cloud-moon:before{content:"\f6c3"}.fa-briefcase:before{content:"\f0b1"}.fa-person-falling:before{content:"\e546"}.fa-image-portrait:before,.fa-portrait:before{content:"\f3e0"}.fa-user-tag:before{content:"\f507"}.fa-rug:before{content:"\e569"}.fa-earth-europe:before,.fa-globe-europe:before{content:"\f7a2"}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:"\f59d"}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:"\f410"}.fa-baht-sign:before{content:"\e0ac"}.fa-book-open:before{content:"\f518"}.fa-book-journal-whills:before,.fa-journal-whills:before{content:"\f66a"}.fa-handcuffs:before{content:"\e4f8"}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:"\f071"}.fa-database:before{content:"\f1c0"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-bottle-droplet:before{content:"\e4c4"}.fa-mask-face:before{content:"\e1d7"}.fa-hill-rockslide:before{content:"\e508"}.fa-exchange-alt:before,.fa-right-left:before{content:"\f362"}.fa-paper-plane:before{content:"\f1d8"}.fa-road-circle-exclamation:before{content:"\e565"}.fa-dungeon:before{content:"\f6d9"}.fa-align-right:before{content:"\f038"}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-life-ring:before{content:"\f1cd"}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-calendar-day:before{content:"\f783"}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:"\f5c5"}.fa-arrows-up-down:before,.fa-arrows-v:before{content:"\f07d"}.fa-face-grimace:before,.fa-grimace:before{content:"\f57f"}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:"\e2ce"}.fa-level-down-alt:before,.fa-turn-down:before{content:"\f3be"}.fa-person-walking-arrow-right:before{content:"\e552"}.fa-envelope-square:before,.fa-square-envelope:before{content:"\f199"}.fa-dice:before{content:"\f522"}.fa-bowling-ball:before{content:"\f436"}.fa-brain:before{content:"\f5dc"}.fa-band-aid:before,.fa-bandage:before{content:"\f462"}.fa-calendar-minus:before{content:"\f272"}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:"\f057"}.fa-gifts:before{content:"\f79c"}.fa-hotel:before{content:"\f594"}.fa-earth-asia:before,.fa-globe-asia:before{content:"\f57e"}.fa-id-card-alt:before,.fa-id-card-clip:before{content:"\f47f"}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:"\f00e"}.fa-thumbs-up:before{content:"\f164"}.fa-user-clock:before{content:"\f4fd"}.fa-allergies:before,.fa-hand-dots:before{content:"\f461"}.fa-file-invoice:before{content:"\f570"}.fa-window-minimize:before{content:"\f2d1"}.fa-coffee:before,.fa-mug-saucer:before{content:"\f0f4"}.fa-brush:before{content:"\f55d"}.fa-mask:before{content:"\f6fa"}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:"\f010"}.fa-ruler-vertical:before{content:"\f548"}.fa-user-alt:before,.fa-user-large:before{content:"\f406"}.fa-train-tram:before{content:"\e5b4"}.fa-user-nurse:before{content:"\f82f"}.fa-syringe:before{content:"\f48e"}.fa-cloud-sun:before{content:"\f6c4"}.fa-stopwatch-20:before{content:"\e06f"}.fa-square-full:before{content:"\f45c"}.fa-magnet:before{content:"\f076"}.fa-jar:before{content:"\e516"}.fa-note-sticky:before,.fa-sticky-note:before{content:"\f249"}.fa-bug-slash:before{content:"\e490"}.fa-arrow-up-from-water-pump:before{content:"\e4b6"}.fa-bone:before{content:"\f5d7"}.fa-user-injured:before{content:"\f728"}.fa-face-sad-tear:before,.fa-sad-tear:before{content:"\f5b4"}.fa-plane:before{content:"\f072"}.fa-tent-arrows-down:before{content:"\e581"}.fa-exclamation:before{content:"\21"}.fa-arrows-spin:before{content:"\e4bb"}.fa-print:before{content:"\f02f"}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:"\e2bb"}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\24"}.fa-x:before{content:"\58"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:"\f688"}.fa-users-cog:before,.fa-users-gear:before{content:"\f509"}.fa-person-military-pointing:before{content:"\e54a"}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:"\f19c"}.fa-umbrella:before{content:"\f0e9"}.fa-trowel:before{content:"\e589"}.fa-d:before{content:"\44"}.fa-stapler:before{content:"\e5af"}.fa-masks-theater:before,.fa-theater-masks:before{content:"\f630"}.fa-kip-sign:before{content:"\e1c4"}.fa-hand-point-left:before{content:"\f0a5"}.fa-handshake-alt:before,.fa-handshake-simple:before{content:"\f4c6"}.fa-fighter-jet:before,.fa-jet-fighter:before{content:"\f0fb"}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:"\f1e1"}.fa-barcode:before{content:"\f02a"}.fa-plus-minus:before{content:"\e43c"}.fa-video-camera:before,.fa-video:before{content:"\f03d"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-person-circle-check:before{content:"\e53e"}.fa-level-up-alt:before,.fa-turn-up:before{content:"\f3bf"}
/* 9 */ .fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:host,:root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../fonts/fa-brands-400.woff2) format("woff2"),url(../fonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-weight:400}.fa-monero:before{content:"\f3d0"}.fa-hooli:before{content:"\f427"}.fa-yelp:before{content:"\f1e9"}.fa-cc-visa:before{content:"\f1f0"}.fa-lastfm:before{content:"\f202"}.fa-shopware:before{content:"\f5b5"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-aws:before{content:"\f375"}.fa-redhat:before{content:"\f7bc"}.fa-yoast:before{content:"\f2b1"}.fa-cloudflare:before{content:"\e07d"}.fa-ups:before{content:"\f7e0"}.fa-pixiv:before{content:"\e640"}.fa-wpexplorer:before{content:"\f2de"}.fa-dyalog:before{content:"\f399"}.fa-bity:before{content:"\f37a"}.fa-stackpath:before{content:"\f842"}.fa-buysellads:before{content:"\f20d"}.fa-first-order:before{content:"\f2b0"}.fa-modx:before{content:"\f285"}.fa-guilded:before{content:"\e07e"}.fa-vnv:before{content:"\f40b"}.fa-js-square:before,.fa-square-js:before{content:"\f3b9"}.fa-microsoft:before{content:"\f3ca"}.fa-qq:before{content:"\f1d6"}.fa-orcid:before{content:"\f8d2"}.fa-java:before{content:"\f4e4"}.fa-invision:before{content:"\f7b0"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-centercode:before{content:"\f380"}.fa-glide-g:before{content:"\f2a6"}.fa-drupal:before{content:"\f1a9"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-unity:before{content:"\e049"}.fa-whmcs:before{content:"\f40d"}.fa-rocketchat:before{content:"\f3e8"}.fa-vk:before{content:"\f189"}.fa-untappd:before{content:"\f405"}.fa-mailchimp:before{content:"\f59e"}.fa-css3-alt:before{content:"\f38b"}.fa-reddit-square:before,.fa-square-reddit:before{content:"\f1a2"}.fa-vimeo-v:before{content:"\f27d"}.fa-contao:before{content:"\f26d"}.fa-square-font-awesome:before{content:"\e5ad"}.fa-deskpro:before{content:"\f38f"}.fa-brave:before{content:"\e63c"}.fa-sistrix:before{content:"\f3ee"}.fa-instagram-square:before,.fa-square-instagram:before{content:"\e055"}.fa-battle-net:before{content:"\f835"}.fa-the-red-yeti:before{content:"\f69d"}.fa-hacker-news-square:before,.fa-square-hacker-news:before{content:"\f3af"}.fa-edge:before{content:"\f282"}.fa-threads:before{content:"\e618"}.fa-napster:before{content:"\f3d2"}.fa-snapchat-square:before,.fa-square-snapchat:before{content:"\f2ad"}.fa-google-plus-g:before{content:"\f0d5"}.fa-artstation:before{content:"\f77a"}.fa-markdown:before{content:"\f60f"}.fa-sourcetree:before{content:"\f7d3"}.fa-google-plus:before{content:"\f2b3"}.fa-diaspora:before{content:"\f791"}.fa-foursquare:before{content:"\f180"}.fa-stack-overflow:before{content:"\f16c"}.fa-github-alt:before{content:"\f113"}.fa-phoenix-squadron:before{content:"\f511"}.fa-pagelines:before{content:"\f18c"}.fa-algolia:before{content:"\f36c"}.fa-red-river:before{content:"\f3e3"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-safari:before{content:"\f267"}.fa-google:before{content:"\f1a0"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-atlassian:before{content:"\f77b"}.fa-linkedin-in:before{content:"\f0e1"}.fa-digital-ocean:before{content:"\f391"}.fa-nimblr:before{content:"\f5a8"}.fa-chromecast:before{content:"\f838"}.fa-evernote:before{content:"\f839"}.fa-hacker-news:before{content:"\f1d4"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-adversal:before{content:"\f36a"}.fa-creative-commons:before{content:"\f25e"}.fa-watchman-monitoring:before{content:"\e087"}.fa-fonticons:before{content:"\f280"}.fa-weixin:before{content:"\f1d7"}.fa-shirtsinbulk:before{content:"\f214"}.fa-codepen:before{content:"\f1cb"}.fa-git-alt:before{content:"\f841"}.fa-lyft:before{content:"\f3c3"}.fa-rev:before{content:"\f5b2"}.fa-windows:before{content:"\f17a"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-square-viadeo:before,.fa-viadeo-square:before{content:"\f2aa"}.fa-meetup:before{content:"\f2e0"}.fa-centos:before{content:"\f789"}.fa-adn:before{content:"\f170"}.fa-cloudsmith:before{content:"\f384"}.fa-opensuse:before{content:"\e62b"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-dribbble-square:before,.fa-square-dribbble:before{content:"\f397"}.fa-codiepie:before{content:"\f284"}.fa-node:before{content:"\f419"}.fa-mix:before{content:"\f3cb"}.fa-steam:before{content:"\f1b6"}.fa-cc-apple-pay:before{content:"\f416"}.fa-scribd:before{content:"\f28a"}.fa-debian:before{content:"\e60b"}.fa-openid:before{content:"\f19b"}.fa-instalod:before{content:"\e081"}.fa-expeditedssl:before{content:"\f23e"}.fa-sellcast:before{content:"\f2da"}.fa-square-twitter:before,.fa-twitter-square:before{content:"\f081"}.fa-r-project:before{content:"\f4f7"}.fa-delicious:before{content:"\f1a5"}.fa-freebsd:before{content:"\f3a4"}.fa-vuejs:before{content:"\f41f"}.fa-accusoft:before{content:"\f369"}.fa-ioxhost:before{content:"\f208"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-app-store:before{content:"\f36f"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-itunes-note:before{content:"\f3b5"}.fa-golang:before{content:"\e40f"}.fa-kickstarter:before{content:"\f3bb"}.fa-grav:before{content:"\f2d6"}.fa-weibo:before{content:"\f18a"}.fa-uncharted:before{content:"\e084"}.fa-firstdraft:before{content:"\f3a1"}.fa-square-youtube:before,.fa-youtube-square:before{content:"\f431"}.fa-wikipedia-w:before{content:"\f266"}.fa-rendact:before,.fa-wpressr:before{content:"\f3e4"}.fa-angellist:before{content:"\f209"}.fa-galactic-republic:before{content:"\f50c"}.fa-nfc-directional:before{content:"\e530"}.fa-skype:before{content:"\f17e"}.fa-joget:before{content:"\f3b7"}.fa-fedora:before{content:"\f798"}.fa-stripe-s:before{content:"\f42a"}.fa-meta:before{content:"\e49b"}.fa-laravel:before{content:"\f3bd"}.fa-hotjar:before{content:"\f3b1"}.fa-bluetooth-b:before{content:"\f294"}.fa-square-letterboxd:before{content:"\e62e"}.fa-sticker-mule:before{content:"\f3f7"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-hips:before{content:"\f452"}.fa-behance:before{content:"\f1b4"}.fa-reddit:before{content:"\f1a1"}.fa-discord:before{content:"\f392"}.fa-chrome:before{content:"\f268"}.fa-app-store-ios:before{content:"\f370"}.fa-cc-discover:before{content:"\f1f2"}.fa-wpbeginner:before{content:"\f297"}.fa-confluence:before{content:"\f78d"}.fa-shoelace:before{content:"\e60c"}.fa-mdb:before{content:"\f8ca"}.fa-dochub:before{content:"\f394"}.fa-accessible-icon:before{content:"\f368"}.fa-ebay:before{content:"\f4f4"}.fa-amazon:before{content:"\f270"}.fa-unsplash:before{content:"\e07c"}.fa-yarn:before{content:"\f7e3"}.fa-square-steam:before,.fa-steam-square:before{content:"\f1b7"}.fa-500px:before{content:"\f26e"}.fa-square-vimeo:before,.fa-vimeo-square:before{content:"\f194"}.fa-asymmetrik:before{content:"\f372"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-gratipay:before{content:"\f184"}.fa-apple:before{content:"\f179"}.fa-hive:before{content:"\e07f"}.fa-gitkraken:before{content:"\f3a6"}.fa-keybase:before{content:"\f4f5"}.fa-apple-pay:before{content:"\f415"}.fa-padlet:before{content:"\e4a0"}.fa-amazon-pay:before{content:"\f42c"}.fa-github-square:before,.fa-square-github:before{content:"\f092"}.fa-stumbleupon:before{content:"\f1a4"}.fa-fedex:before{content:"\f797"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-shopify:before{content:"\e057"}.fa-neos:before{content:"\f612"}.fa-square-threads:before{content:"\e619"}.fa-hackerrank:before{content:"\f5f7"}.fa-researchgate:before{content:"\f4f8"}.fa-swift:before{content:"\f8e1"}.fa-angular:before{content:"\f420"}.fa-speakap:before{content:"\f3f3"}.fa-angrycreative:before{content:"\f36e"}.fa-y-combinator:before{content:"\f23b"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-google-scholar:before{content:"\e63b"}.fa-gitlab-square:before,.fa-square-gitlab:before{content:"\e5ae"}.fa-studiovinari:before{content:"\f3f8"}.fa-pied-piper:before{content:"\f2ae"}.fa-wordpress:before{content:"\f19a"}.fa-product-hunt:before{content:"\f288"}.fa-firefox:before{content:"\f269"}.fa-linode:before{content:"\f2b8"}.fa-goodreads:before{content:"\f3a8"}.fa-odnoklassniki-square:before,.fa-square-odnoklassniki:before{content:"\f264"}.fa-jsfiddle:before{content:"\f1cc"}.fa-sith:before{content:"\f512"}.fa-themeisle:before{content:"\f2b2"}.fa-page4:before{content:"\f3d7"}.fa-hashnode:before{content:"\e499"}.fa-react:before{content:"\f41b"}.fa-cc-paypal:before{content:"\f1f4"}.fa-squarespace:before{content:"\f5be"}.fa-cc-stripe:before{content:"\f1f5"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-bitcoin:before{content:"\f379"}.fa-keycdn:before{content:"\f3ba"}.fa-opera:before{content:"\f26a"}.fa-itch-io:before{content:"\f83a"}.fa-umbraco:before{content:"\f8e8"}.fa-galactic-senate:before{content:"\f50d"}.fa-ubuntu:before{content:"\f7df"}.fa-draft2digital:before{content:"\f396"}.fa-stripe:before{content:"\f429"}.fa-houzz:before{content:"\f27c"}.fa-gg:before{content:"\f260"}.fa-dhl:before{content:"\f790"}.fa-pinterest-square:before,.fa-square-pinterest:before{content:"\f0d3"}.fa-xing:before{content:"\f168"}.fa-blackberry:before{content:"\f37b"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-playstation:before{content:"\f3df"}.fa-quinscape:before{content:"\f459"}.fa-less:before{content:"\f41d"}.fa-blogger-b:before{content:"\f37d"}.fa-opencart:before{content:"\f23d"}.fa-vine:before{content:"\f1ca"}.fa-signal-messenger:before{content:"\e663"}.fa-paypal:before{content:"\f1ed"}.fa-gitlab:before{content:"\f296"}.fa-typo3:before{content:"\f42b"}.fa-reddit-alien:before{content:"\f281"}.fa-yahoo:before{content:"\f19e"}.fa-dailymotion:before{content:"\e052"}.fa-affiliatetheme:before{content:"\f36b"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-bootstrap:before{content:"\f836"}.fa-odnoklassniki:before{content:"\f263"}.fa-nfc-symbol:before{content:"\e531"}.fa-mintbit:before{content:"\e62f"}.fa-ethereum:before{content:"\f42e"}.fa-speaker-deck:before{content:"\f83c"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-patreon:before{content:"\f3d9"}.fa-avianex:before{content:"\f374"}.fa-ello:before{content:"\f5f1"}.fa-gofore:before{content:"\f3a7"}.fa-bimobject:before{content:"\f378"}.fa-brave-reverse:before{content:"\e63d"}.fa-facebook-f:before{content:"\f39e"}.fa-google-plus-square:before,.fa-square-google-plus:before{content:"\f0d4"}.fa-mandalorian:before{content:"\f50f"}.fa-first-order-alt:before{content:"\f50a"}.fa-osi:before{content:"\f41a"}.fa-google-wallet:before{content:"\f1ee"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-periscope:before{content:"\f3da"}.fa-fulcrum:before{content:"\f50b"}.fa-cloudscale:before{content:"\f383"}.fa-forumbee:before{content:"\f211"}.fa-mizuni:before{content:"\f3cc"}.fa-schlix:before{content:"\f3ea"}.fa-square-xing:before,.fa-xing-square:before{content:"\f169"}.fa-bandcamp:before{content:"\f2d5"}.fa-wpforms:before{content:"\f298"}.fa-cloudversify:before{content:"\f385"}.fa-usps:before{content:"\f7e1"}.fa-megaport:before{content:"\f5a3"}.fa-magento:before{content:"\f3c4"}.fa-spotify:before{content:"\f1bc"}.fa-optin-monster:before{content:"\f23c"}.fa-fly:before{content:"\f417"}.fa-aviato:before{content:"\f421"}.fa-itunes:before{content:"\f3b4"}.fa-cuttlefish:before{content:"\f38c"}.fa-blogger:before{content:"\f37c"}.fa-flickr:before{content:"\f16e"}.fa-viber:before{content:"\f409"}.fa-soundcloud:before{content:"\f1be"}.fa-digg:before{content:"\f1a6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-letterboxd:before{content:"\e62d"}.fa-symfony:before{content:"\f83d"}.fa-maxcdn:before{content:"\f136"}.fa-etsy:before{content:"\f2d7"}.fa-facebook-messenger:before{content:"\f39f"}.fa-audible:before{content:"\f373"}.fa-think-peaks:before{content:"\f731"}.fa-bilibili:before{content:"\e3d9"}.fa-erlang:before{content:"\f39d"}.fa-x-twitter:before{content:"\e61b"}.fa-cotton-bureau:before{content:"\f89e"}.fa-dashcube:before{content:"\f210"}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-stack-exchange:before{content:"\f18d"}.fa-elementor:before{content:"\f430"}.fa-pied-piper-square:before,.fa-square-pied-piper:before{content:"\e01e"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-palfed:before{content:"\f3d8"}.fa-superpowers:before{content:"\f2dd"}.fa-resolving:before{content:"\f3e7"}.fa-xbox:before{content:"\f412"}.fa-searchengin:before{content:"\f3eb"}.fa-tiktok:before{content:"\e07b"}.fa-facebook-square:before,.fa-square-facebook:before{content:"\f082"}.fa-renren:before{content:"\f18b"}.fa-linux:before{content:"\f17c"}.fa-glide:before{content:"\f2a5"}.fa-linkedin:before{content:"\f08c"}.fa-hubspot:before{content:"\f3b2"}.fa-deploydog:before{content:"\f38e"}.fa-twitch:before{content:"\f1e8"}.fa-ravelry:before{content:"\f2d9"}.fa-mixer:before{content:"\e056"}.fa-lastfm-square:before,.fa-square-lastfm:before{content:"\f203"}.fa-vimeo:before{content:"\f40a"}.fa-mendeley:before{content:"\f7b3"}.fa-uniregistry:before{content:"\f404"}.fa-figma:before{content:"\f799"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-dropbox:before{content:"\f16b"}.fa-instagram:before{content:"\f16d"}.fa-cmplid:before{content:"\e360"}.fa-upwork:before{content:"\e641"}.fa-facebook:before{content:"\f09a"}.fa-gripfire:before{content:"\f3ac"}.fa-jedi-order:before{content:"\f50e"}.fa-uikit:before{content:"\f403"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-phabricator:before{content:"\f3db"}.fa-ussunnah:before{content:"\f407"}.fa-earlybirds:before{content:"\f39a"}.fa-trade-federation:before{content:"\f513"}.fa-autoprefixer:before{content:"\f41c"}.fa-whatsapp:before{content:"\f232"}.fa-slideshare:before{content:"\f1e7"}.fa-google-play:before{content:"\f3ab"}.fa-viadeo:before{content:"\f2a9"}.fa-line:before{content:"\f3c0"}.fa-google-drive:before{content:"\f3aa"}.fa-servicestack:before{content:"\f3ec"}.fa-simplybuilt:before{content:"\f215"}.fa-bitbucket:before{content:"\f171"}.fa-imdb:before{content:"\f2d8"}.fa-deezer:before{content:"\e077"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-jira:before{content:"\f7b1"}.fa-docker:before{content:"\f395"}.fa-screenpal:before{content:"\e570"}.fa-bluetooth:before{content:"\f293"}.fa-gitter:before{content:"\f426"}.fa-d-and-d:before{content:"\f38d"}.fa-microblog:before{content:"\e01a"}.fa-cc-diners-club:before{content:"\f24c"}.fa-gg-circle:before{content:"\f261"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-yandex:before{content:"\f413"}.fa-readme:before{content:"\f4d5"}.fa-html5:before{content:"\f13b"}.fa-sellsy:before{content:"\f213"}.fa-sass:before{content:"\f41e"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-buromobelexperte:before{content:"\f37f"}.fa-salesforce:before{content:"\f83b"}.fa-octopus-deploy:before{content:"\e082"}.fa-medapps:before{content:"\f3c6"}.fa-ns8:before{content:"\f3d5"}.fa-pinterest-p:before{content:"\f231"}.fa-apper:before{content:"\f371"}.fa-fort-awesome:before{content:"\f286"}.fa-waze:before{content:"\f83f"}.fa-cc-jcb:before{content:"\f24b"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-rust:before{content:"\e07a"}.fa-wix:before{content:"\f5cf"}.fa-behance-square:before,.fa-square-behance:before{content:"\f1b5"}.fa-supple:before{content:"\f3f9"}.fa-webflow:before{content:"\e65c"}.fa-rebel:before{content:"\f1d0"}.fa-css3:before{content:"\f13c"}.fa-staylinked:before{content:"\f3f5"}.fa-kaggle:before{content:"\f5fa"}.fa-space-awesome:before{content:"\e5ac"}.fa-deviantart:before{content:"\f1bd"}.fa-cpanel:before{content:"\f388"}.fa-goodreads-g:before{content:"\f3a9"}.fa-git-square:before,.fa-square-git:before{content:"\f1d2"}.fa-square-tumblr:before,.fa-tumblr-square:before{content:"\f174"}.fa-trello:before{content:"\f181"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-get-pocket:before{content:"\f265"}.fa-perbyte:before{content:"\e083"}.fa-grunt:before{content:"\f3ad"}.fa-weebly:before{content:"\f5cc"}.fa-connectdevelop:before{content:"\f20e"}.fa-leanpub:before{content:"\f212"}.fa-black-tie:before{content:"\f27e"}.fa-themeco:before{content:"\f5c6"}.fa-python:before{content:"\f3e2"}.fa-android:before{content:"\f17b"}.fa-bots:before{content:"\e340"}.fa-free-code-camp:before{content:"\f2c5"}.fa-hornbill:before{content:"\f592"}.fa-js:before{content:"\f3b8"}.fa-ideal:before{content:"\e013"}.fa-git:before{content:"\f1d3"}.fa-dev:before{content:"\f6cc"}.fa-sketch:before{content:"\f7c6"}.fa-yandex-international:before{content:"\f414"}.fa-cc-amex:before{content:"\f1f3"}.fa-uber:before{content:"\f402"}.fa-github:before{content:"\f09b"}.fa-php:before{content:"\f457"}.fa-alipay:before{content:"\f642"}.fa-youtube:before{content:"\f167"}.fa-skyatlas:before{content:"\f216"}.fa-firefox-browser:before{content:"\e007"}.fa-replyd:before{content:"\f3e6"}.fa-suse:before{content:"\f7d6"}.fa-jenkins:before{content:"\f3b6"}.fa-twitter:before{content:"\f099"}.fa-rockrms:before{content:"\f3e9"}.fa-pinterest:before{content:"\f0d2"}.fa-buffer:before{content:"\f837"}.fa-npm:before{content:"\f3d4"}.fa-yammer:before{content:"\f840"}.fa-btc:before{content:"\f15a"}.fa-dribbble:before{content:"\f17d"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-internet-explorer:before{content:"\f26b"}.fa-stubber:before{content:"\e5c7"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-old-republic:before{content:"\f510"}.fa-odysee:before{content:"\e5c6"}.fa-square-whatsapp:before,.fa-whatsapp-square:before{content:"\f40c"}.fa-node-js:before{content:"\f3d3"}.fa-edge-legacy:before{content:"\e078"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-medrt:before{content:"\f3c8"}.fa-usb:before{content:"\f287"}.fa-tumblr:before{content:"\f173"}.fa-vaadin:before{content:"\f408"}.fa-quora:before{content:"\f2c4"}.fa-square-x-twitter:before{content:"\e61a"}.fa-reacteurope:before{content:"\f75d"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-amilia:before{content:"\f36d"}.fa-mixcloud:before{content:"\f289"}.fa-flipboard:before{content:"\f44d"}.fa-viacoin:before{content:"\f237"}.fa-critical-role:before{content:"\f6c9"}.fa-sitrox:before{content:"\e44a"}.fa-discourse:before{content:"\f393"}.fa-joomla:before{content:"\f1aa"}.fa-mastodon:before{content:"\f4f6"}.fa-airbnb:before{content:"\f834"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-buy-n-large:before{content:"\f8a6"}.fa-gulp:before{content:"\f3ae"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-strava:before{content:"\f428"}.fa-ember:before{content:"\f423"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-teamspeak:before{content:"\f4f9"}.fa-pushed:before{content:"\f3e1"}.fa-wordpress-simple:before{content:"\f411"}.fa-nutritionix:before{content:"\f3d6"}.fa-wodu:before{content:"\e088"}.fa-google-pay:before{content:"\e079"}.fa-intercom:before{content:"\f7af"}.fa-zhihu:before{content:"\f63f"}.fa-korvue:before{content:"\f42f"}.fa-pix:before{content:"\e43a"}.fa-steam-symbol:before{content:"\f3f6"}:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../fonts/fa-regular-400.woff2) format("woff2"),url(../fonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-weight:400}:host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../fonts/fa-solid-900.woff2) format("woff2"),url(../fonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../fonts/fa-brands-400.woff2) format("woff2"),url(../fonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(../fonts/fa-solid-900.woff2) format("woff2"),url(../fonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(../fonts/fa-regular-400.woff2) format("woff2"),url(../fonts/fa-regular-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../fonts/fa-solid-900.woff2) format("woff2"),url(../fonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../fonts/fa-brands-400.woff2) format("woff2"),url(../fonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../fonts/fa-regular-400.woff2) format("woff2"),url(../fonts/fa-regular-400.ttf) format("truetype");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(../fonts/fa-v4compatibility.woff2) format("woff2"),url(../fonts/fa-v4compatibility.ttf) format("truetype");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f27a}
/* Minify_CSS_UriRewriter::$debugText

*/

/* style.css */

/* 1    */ /*
/* 2    *| Theme Name: HitMag
/* 3    *| Theme URI: http://themezhut.com/themes/hitmag/
/* 4    *| Author: ThemezHut
/* 5    *| Author URI: http://themezhut.com
/* 6    *| Description: HitMag is a stylish and powerful theme crafted for magazines, newspapers or personal blogs. HitMag comes with a handful of options to customize your site the way you want. Free version has included a magazine homepage layout, 4 different style blog listing layouts and main color options. Not only that it comes with so many handful of features like author details box, Related posts after articles and control post metadata. All those features and options ensures that HitMag is not just another free WordPress theme but a powerful theme that fulfills all of the basic needs. See all the theme information at https://themezhut.com/themes/hitmag/
/* 7    *| Version: 1.4.4
/* 8    *| Tested up to: 6.9
/* 9    *| Requires PHP: 5.3
/* 10   *| License: GNU General Public License v2 or later
/* 11   *| License URI: http://www.gnu.org/licenses/gpl-2.0.html
/* 12   *| Text Domain: hitmag
/* 13   *| Tags: grid-layout,right-sidebar,two-columns,custom-logo,custom-background,custom-menu,editor-style,featured-images,footer-widgets,full-width-template,theme-options,threaded-comments,translation-ready,news,blog,e-commerce,rtl-language-support
/* 14   *|
/* 15   *| This theme, like WordPress, is licensed under the GPL.
/* 16   *| Use it to make something cool, have fun, and share what you've learned with others.
/* 17   *|
/* 18   *| HitMag is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
/* 19   *| Underscores is distributed under the terms of the GNU GPL v2 or later.
/* 20   *|
/* 21   *| Normalizing styles have been helped along thanks to the fine work of
/* 22   *| Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
/* 23   *| */
/* 24   */ /*--------------------------------------------------------------
/* 25   *| >>> TABLE OF CONTENTS:
/* 26   *| ----------------------------------------------------------------
/* 27   *| # Normalize
/* 28   *| # Typography
/* 29   *| # Elements
/* 30   *| # Forms
/* 31   *| # Navigation
/* 32   *| 	## Links
/* 33   *| 	## Menus
/* 34   *| # Accessibility
/* 35   *| # Alignments
/* 36   *| # Clearings
/* 37   *| # Widgets
/* 38   *| # Content
/* 39   *| 	## Posts and pages
/* 40   *| 	## Comments
/* 41   *| # Infinite scroll
/* 42   *| # Media
/* 43   *| 	## Captions
/* 44   *| 	## Galleries
/* 45   *|
/* 46   *| --------------------------------------------------------------*/
/* 47   */ /*--------------------------------------------------------------
/* 48   *| # Normalize
/* 49   *| --------------------------------------------------------------*/
/* 50   */ html {

/* style.css */

/* 51   */   font-family: sans-serif;
/* 52   */   -webkit-text-size-adjust: 100%;
/* 53   */   -ms-text-size-adjust: 100%;
/* 54   */ }
/* 55   */
/* 56   */ body {
/* 57   */   margin: 0;
/* 58   */ }
/* 59   */
/* 60   */ article,
/* 61   */ aside,
/* 62   */ details,
/* 63   */ figcaption,
/* 64   */ figure,
/* 65   */ footer,
/* 66   */ header,
/* 67   */ main,
/* 68   */ menu,
/* 69   */ nav,
/* 70   */ section,
/* 71   */ summary {
/* 72   */   display: block;
/* 73   */ }
/* 74   */
/* 75   */ audio,
/* 76   */ canvas,
/* 77   */ progress,
/* 78   */ video {
/* 79   */   display: inline-block;
/* 80   */   vertical-align: baseline;
/* 81   */ }
/* 82   */
/* 83   */ audio:not([controls]) {
/* 84   */   display: none;
/* 85   */   height: 0;
/* 86   */ }
/* 87   */
/* 88   */ [hidden],
/* 89   */ template {
/* 90   */   display: none;
/* 91   */ }
/* 92   */
/* 93   */ a {
/* 94   */   background-color: transparent;
/* 95   */ }
/* 96   */
/* 97   */ a:active,
/* 98   */ a:hover {
/* 99   */   outline: 0;
/* 100  */ }

/* style.css */

/* 101  */
/* 102  */ abbr[title] {
/* 103  */   border-bottom: 1px dotted;
/* 104  */ }
/* 105  */
/* 106  */ b,
/* 107  */ strong {
/* 108  */   font-weight: bold;
/* 109  */ }
/* 110  */
/* 111  */ dfn {
/* 112  */   font-style: italic;
/* 113  */ }
/* 114  */
/* 115  */ h1 {
/* 116  */   font-size: 2em;
/* 117  */   margin: 0.67em 0;
/* 118  */ }
/* 119  */
/* 120  */ mark {
/* 121  */   background: #ff0;
/* 122  */   color: #000;
/* 123  */ }
/* 124  */
/* 125  */ small {
/* 126  */   font-size: 80%;
/* 127  */ }
/* 128  */
/* 129  */ sub,
/* 130  */ sup {
/* 131  */   font-size: 75%;
/* 132  */   line-height: 0;
/* 133  */   position: relative;
/* 134  */   vertical-align: baseline;
/* 135  */ }
/* 136  */
/* 137  */ sup {
/* 138  */   top: -0.5em;
/* 139  */ }
/* 140  */
/* 141  */ sub {
/* 142  */   bottom: -0.25em;
/* 143  */ }
/* 144  */
/* 145  */ img {
/* 146  */   border: 0;
/* 147  */ }
/* 148  */
/* 149  */ svg:not(:root) {
/* 150  */   overflow: hidden;

/* style.css */

/* 151  */ }
/* 152  */
/* 153  */ figure {
/* 154  */   margin: 1em 40px;
/* 155  */ }
/* 156  */
/* 157  */ hr {
/* 158  */   box-sizing: content-box;
/* 159  */   height: 0;
/* 160  */ }
/* 161  */
/* 162  */ pre {
/* 163  */   overflow: auto;
/* 164  */ }
/* 165  */
/* 166  */ code,
/* 167  */ kbd,
/* 168  */ pre,
/* 169  */ samp {
/* 170  */   font-family: monospace, monospace;
/* 171  */   font-size: 1em;
/* 172  */ }
/* 173  */
/* 174  */ button,
/* 175  */ input,
/* 176  */ optgroup,
/* 177  */ select,
/* 178  */ textarea {
/* 179  */   color: inherit;
/* 180  */   font: inherit;
/* 181  */   margin: 0;
/* 182  */ }
/* 183  */
/* 184  */ button {
/* 185  */   overflow: visible;
/* 186  */ }
/* 187  */
/* 188  */ button,
/* 189  */ select {
/* 190  */   text-transform: none;
/* 191  */ }
/* 192  */
/* 193  */ button,
/* 194  */ html input[type=button],
/* 195  */ input[type=reset],
/* 196  */ input[type=submit] {
/* 197  */   -webkit-appearance: button;
/* 198  */   cursor: pointer;
/* 199  */ }
/* 200  */

/* style.css */

/* 201  */ button[disabled],
/* 202  */ html input[disabled] {
/* 203  */   cursor: default;
/* 204  */ }
/* 205  */
/* 206  */ button::-moz-focus-inner,
/* 207  */ input::-moz-focus-inner {
/* 208  */   border: 0;
/* 209  */   padding: 0;
/* 210  */ }
/* 211  */
/* 212  */ input {
/* 213  */   line-height: normal;
/* 214  */ }
/* 215  */
/* 216  */ input[type=checkbox],
/* 217  */ input[type=radio] {
/* 218  */   box-sizing: border-box;
/* 219  */   padding: 0;
/* 220  */ }
/* 221  */
/* 222  */ input[type=number]::-webkit-inner-spin-button,
/* 223  */ input[type=number]::-webkit-outer-spin-button {
/* 224  */   height: auto;
/* 225  */ }
/* 226  */
/* 227  */ input[type=search]::-webkit-search-cancel-button,
/* 228  */ input[type=search]::-webkit-search-decoration {
/* 229  */   -webkit-appearance: none;
/* 230  */ }
/* 231  */
/* 232  */ fieldset {
/* 233  */   border: 1px solid #c0c0c0;
/* 234  */   margin: 0 2px;
/* 235  */   padding: 0.35em 0.625em 0.75em;
/* 236  */ }
/* 237  */
/* 238  */ legend {
/* 239  */   border: 0;
/* 240  */   padding: 0;
/* 241  */ }
/* 242  */
/* 243  */ textarea {
/* 244  */   overflow: auto;
/* 245  */ }
/* 246  */
/* 247  */ optgroup {
/* 248  */   font-weight: bold;
/* 249  */ }
/* 250  */

/* style.css */

/* 251  */ table {
/* 252  */   border-collapse: collapse;
/* 253  */   border-spacing: 0;
/* 254  */ }
/* 255  */
/* 256  */ td,
/* 257  */ th {
/* 258  */   padding: 0;
/* 259  */ }
/* 260  */
/* 261  */ /*--------------------------------------------------------------
/* 262  *| # Typography
/* 263  *| --------------------------------------------------------------*/
/* 264  */ body,
/* 265  */ button,
/* 266  */ input,
/* 267  */ select,
/* 268  */ textarea {
/* 269  */   color: #404040;
/* 270  */   font-family: "Lato", sans-serif;
/* 271  */   font-size: 16px;
/* 272  */   font-size: 1rem;
/* 273  */   line-height: 1.5;
/* 274  */ }
/* 275  */
/* 276  */ h1, h2, h3, h4, h5, h6 {
/* 277  */   clear: both;
/* 278  */   margin: 0.9em 0;
/* 279  */   line-height: 1.3;
/* 280  */ }
/* 281  */
/* 282  */ h1 {
/* 283  */   font-size: 36px;
/* 284  */   font-size: 2.25rem;
/* 285  */ }
/* 286  */
/* 287  */ h2 {
/* 288  */   font-size: 32px;
/* 289  */   font-size: 2rem;
/* 290  */ }
/* 291  */
/* 292  */ h3 {
/* 293  */   font-size: 28px;
/* 294  */   font-size: 1.75rem;
/* 295  */ }
/* 296  */
/* 297  */ h4 {
/* 298  */   font-size: 24px;
/* 299  */   font-size: 1.5rem;
/* 300  */ }

/* style.css */

/* 301  */
/* 302  */ h5 {
/* 303  */   font-size: 20px;
/* 304  */   font-size: 1.25rem;
/* 305  */ }
/* 306  */
/* 307  */ h6 {
/* 308  */   font-size: 16px;
/* 309  */   font-size: 1rem;
/* 310  */ }
/* 311  */
/* 312  */ p {
/* 313  */   margin: 0 0 1.5em;
/* 314  */ }
/* 315  */
/* 316  */ dfn, cite, em, i {
/* 317  */   font-style: italic;
/* 318  */ }
/* 319  */
/* 320  */ blockquote {
/* 321  */   margin: 0 1.5em;
/* 322  */ }
/* 323  */
/* 324  */ address {
/* 325  */   margin: 0 0 1.5em;
/* 326  */ }
/* 327  */
/* 328  */ pre {
/* 329  */   background: #eee;
/* 330  */   font-family: "Courier 10 Pitch", Courier, monospace;
/* 331  */   font-size: 15px;
/* 332  */   font-size: 0.9375rem;
/* 333  */   line-height: 1.6;
/* 334  */   margin-bottom: 1.6em;
/* 335  */   max-width: 100%;
/* 336  */   overflow: auto;
/* 337  */   padding: 1.6em;
/* 338  */ }
/* 339  */
/* 340  */ code, kbd, tt, var {
/* 341  */   font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
/* 342  */   font-size: 15px;
/* 343  */   font-size: 0.9375rem;
/* 344  */ }
/* 345  */
/* 346  */ abbr, acronym {
/* 347  */   border-bottom: 1px dotted #666;
/* 348  */   cursor: help;
/* 349  */   text-decoration: none;
/* 350  */ }

/* style.css */

/* 351  */
/* 352  */ mark, ins {
/* 353  */   background: #fff9c0;
/* 354  */   text-decoration: none;
/* 355  */ }
/* 356  */
/* 357  */ big {
/* 358  */   font-size: 125%;
/* 359  */ }
/* 360  */
/* 361  */ /*--------------------------------------------------------------
/* 362  *| # Elements
/* 363  *| --------------------------------------------------------------*/
/* 364  */ html {
/* 365  */   box-sizing: border-box;
/* 366  */ }
/* 367  */
/* 368  */ *,
/* 369  */ *:before,
/* 370  */ *:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
/* 371  */   box-sizing: inherit;
/* 372  */ }
/* 373  */
/* 374  */ body {
/* 375  */   background: #fff; /* Fallback for when there is no custom background color defined. */
/* 376  */ }
/* 377  */
/* 378  */ blockquote {
/* 379  */   quotes: "" "";
/* 380  */   padding: 1.5em;
/* 381  */   margin: 0 0 1em 0;
/* 382  */   font-size: 18px;
/* 383  */   background: #f8f8f8;
/* 384  */   border-left: 3px solid #e74c3c;
/* 385  */ }
/* 386  */ blockquote:before, blockquote:after {
/* 387  */   content: "";
/* 388  */ }
/* 389  */ blockquote p {
/* 390  */   margin: 0;
/* 391  */ }
/* 392  */ blockquote cite {
/* 393  */   margin-top: 1em;
/* 394  */ }
/* 395  */
/* 396  */ hr {
/* 397  */   background-color: #ccc;
/* 398  */   border: 0;
/* 399  */   height: 1px;
/* 400  */   margin-bottom: 1.5em;

/* style.css */

/* 401  */ }
/* 402  */
/* 403  */ .wp-block-quote {
/* 404  */   font-size: 18px;
/* 405  */   font-size: 1.125rem;
/* 406  */   padding: 1.5em;
/* 407  */   margin: 0 0 1em 0;
/* 408  */   font-style: italic;
/* 409  */   background: #f8f8f8;
/* 410  */   border-left: 3px solid #e74c3c;
/* 411  */ }
/* 412  */
/* 413  */ .wp-block-quote:not(.is-large):not(.is-style-large) {
/* 414  */   border-left: 3px solid #e74c3c;
/* 415  */   padding-left: 1.5em;
/* 416  */ }
/* 417  */
/* 418  */ .wp-block-quote.is-large, .wp-block-quote.is-style-large {
/* 419  */   padding: 1.5em;
/* 420  */   margin: 0 0 1em 0;
/* 421  */ }
/* 422  */
/* 423  */ .wp-block-quote.is-large p {
/* 424  */   font-size: 21px;
/* 425  */ }
/* 426  */
/* 427  */ .wp-block-quote cite, .wp-block-quote footer, .wp-block-quote__citation,
/* 428  */ .wp-block-quote .wp-block-quote__citation {
/* 429  */   color: inherit;
/* 430  */   display: block;
/* 431  */   font-size: inherit;
/* 432  */   font-style: normal;
/* 433  */   font-weight: normal;
/* 434  */   margin-top: 1em;
/* 435  */ }
/* 436  */
/* 437  */ .wp-block-quote cite, .wp-block-quote footer, .wp-block-quote__citation {
/* 438  */   font-size: 16px;
/* 439  */   font-weight: bold;
/* 440  */ }
/* 441  */
/* 442  */ .wp-block-quote.is-large cite, .wp-block-quote footer, .wp-block-quote__citation {
/* 443  */   margin-top: 1em;
/* 444  */   font-size: 18px;
/* 445  */   font-weight: bold;
/* 446  */ }
/* 447  */
/* 448  */ .wp-block-quote.is-large cite, .wp-block-quote.is-large footer, .wp-block-quote.is-style-large cite, .wp-block-quote.is-style-large footer {
/* 449  */   text-align: left;
/* 450  */ }

/* style.css */

/* 451  */
/* 452  */ .wp-block-quote.alignleft p,
/* 453  */ .wp-block-quote.alignright p,
/* 454  */ .wp-block-quote.alignleft .wp-block-quote__citation,
/* 455  */ .wp-block-quote.alignright .wp-block-quote__citation {
/* 456  */   font-size: 14px;
/* 457  */ }
/* 458  */
/* 459  */ .wp-block-quote.alignleft p:last-of-type,
/* 460  */ .wp-block-quote.alignright p:last-of-type {
/* 461  */   margin-bottom: 0;
/* 462  */ }
/* 463  */
/* 464  */ /* Pullquote */
/* 465  */ .wp-block-pullquote {
/* 466  */   border: 0;
/* 467  */   line-height: 1.6;
/* 468  */ }
/* 469  */
/* 470  */ .wp-block-pullquote p {
/* 471  */   margin-bottom: 0.8em;
/* 472  */ }
/* 473  */
/* 474  */ .wp-block-pullquote.alignleft p,
/* 475  */ .wp-block-pullquote.alignright p {
/* 476  */   font-size: 18px;
/* 477  */   margin-bottom: 0.8em;
/* 478  */ }
/* 479  */
/* 480  */ .wp-block-pullquote .wp-block-pullquote__citation {
/* 481  */   font-size: 14px;
/* 482  */   font-weight: bold;
/* 483  */   text-transform: none;
/* 484  */   margin-top: 1em;
/* 485  */ }
/* 486  */
/* 487  */ /* Cover Image */
/* 488  */ .wp-block-cover .wp-block-cover-text p {
/* 489  */   font-size: 2em;
/* 490  */   padding: 1em;
/* 491  */ }
/* 492  */
/* 493  */ .wp-block-cover.alignleft p,
/* 494  */ .wp-block-cover.alignright p {
/* 495  */   font-size: 1.4em;
/* 496  */   padding: 1em;
/* 497  */ }
/* 498  */
/* 499  */ .wp-block-pullquote cite,
/* 500  */ .wp-block-pullquote footer,

/* style.css */

/* 501  */ .wp-block-pullquote__citation {
/* 502  */   font-size: 14px;
/* 503  */   font-weight: bold;
/* 504  */   text-transform: none;
/* 505  */   margin-top: 1em;
/* 506  */ }
/* 507  */
/* 508  */ .wp-block-image .alignleft {
/* 509  */   float: left;
/* 510  */   margin-right: 1em;
/* 511  */ }
/* 512  */
/* 513  */ .wp-block-image .alignright {
/* 514  */   float: right;
/* 515  */   margin-left: 1em;
/* 516  */ }
/* 517  */
/* 518  */ /* Widget Title */
/* 519  */ .widgettitle,
/* 520  */ .is-style-hitmag-widget-title {
/* 521  */   font-size: 18px;
/* 522  */   font-size: 1.125rem;
/* 523  */   border-bottom: 2px solid #e74c3c;
/* 524  */   font-family: "Ubuntu", sans-serif;
/* 525  */   font-weight: bold;
/* 526  */   line-height: 1.3;
/* 527  */   text-transform: uppercase;
/* 528  */   display: inline-block;
/* 529  */   margin-top: 0;
/* 530  */   margin-bottom: 24px;
/* 531  */ }
/* 532  */
/* 533  */ /* Search Block */
/* 534  */ .wp-block-search .wp-block-search__input {
/* 535  */   border: 1px solid #ddd;
/* 536  */   height: 45px;
/* 537  */   padding: 10px;
/* 538  */   box-sizing: border-box;
/* 539  */   -webkit-appearance: none;
/* 540  */   border-radius: 3px;
/* 541  */ }
/* 542  */ .wp-block-search .wp-block-search__button {
/* 543  */   height: 45px;
/* 544  */   border: none;
/* 545  */   padding: 10px 15px;
/* 546  */   cursor: pointer;
/* 547  */   font-size: 12px;
/* 548  */   font-size: 0.75rem;
/* 549  */   text-transform: uppercase;
/* 550  */   font-weight: bold;

/* style.css */

/* 551  */   background: #e74c3c;
/* 552  */   margin-left: 0;
/* 553  */   margin-right: 0;
/* 554  */   color: #ffffff;
/* 555  */ }
/* 556  */ .wp-block-search .wp-block-search__button:hover {
/* 557  */   background-color: #222222;
/* 558  */   color: #ffffff;
/* 559  */ }
/* 560  */
/* 561  */ /* Fix widget h2 on fresh installs */
/* 562  */ #secondary h2.wp-block-heading:not(.is-style-hitmag-widget-title) {
/* 563  */   font-size: 23.008px;
/* 564  */   font-size: 1.438rem;
/* 565  */ }
/* 566  */
/* 567  */ #secondary h3.wp-block-heading:not(.is-style-hitmag-widget-title) {
/* 568  */   font-size: 22px;
/* 569  */   font-size: 1.375rem;
/* 570  */ }
/* 571  */
/* 572  */ #secondary h4.wp-block-heading:not(.is-style-hitmag-widget-title) {
/* 573  */   font-size: 21.008px;
/* 574  */   font-size: 1.313rem;
/* 575  */ }
/* 576  */
/* 577  */ ul, ol {
/* 578  */   margin: 0 0 1.5em 1.5em;
/* 579  */   padding-left: 2em;
/* 580  */ }
/* 581  */
/* 582  */ ul {
/* 583  */   list-style: disc;
/* 584  */ }
/* 585  */
/* 586  */ ol {
/* 587  */   list-style: decimal;
/* 588  */ }
/* 589  */
/* 590  */ li > ul,
/* 591  */ li > ol {
/* 592  */   margin-bottom: 0;
/* 593  */   margin-left: 1.5em;
/* 594  */ }
/* 595  */
/* 596  */ dt {
/* 597  */   font-weight: bold;
/* 598  */ }
/* 599  */
/* 600  */ dd {

/* style.css */

/* 601  */   margin: 0 1.5em 1.5em;
/* 602  */ }
/* 603  */
/* 604  */ img {
/* 605  */   height: auto; /* Make sure images are scaled correctly. */
/* 606  */   max-width: 100%; /* Adhere to container width. */
/* 607  */ }
/* 608  */
/* 609  */ figure {
/* 610  */   margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
/* 611  */ }
/* 612  */
/* 613  */ table {
/* 614  */   border-collapse: collapse;
/* 615  */   margin: 0 0 1.5em;
/* 616  */   width: 100%;
/* 617  */ }
/* 618  */
/* 619  */ table, th, td {
/* 620  */   border: 1px solid #ededed;
/* 621  */ }
/* 622  */
/* 623  */ th {
/* 624  */   background: #f8f8f8;
/* 625  */   font-weight: bold;
/* 626  */   padding: 8px 15px;
/* 627  */ }
/* 628  */
/* 629  */ .site-footer table, .site-footer th, .site-footer td {
/* 630  */   border: 1px solid #555;
/* 631  */ }
/* 632  */ .site-footer th {
/* 633  */   background: #222;
/* 634  */ }
/* 635  */
/* 636  */ td {
/* 637  */   padding: 5px 15px;
/* 638  */ }
/* 639  */
/* 640  */ /*--------------------------------------------------------------
/* 641  *| # Forms
/* 642  *| --------------------------------------------------------------*/
/* 643  */ button,
/* 644  */ input[type=button],
/* 645  */ input[type=reset],
/* 646  */ input[type=submit] {
/* 647  */   border: none;
/* 648  */   border-radius: 3px;
/* 649  */   background: #e74c3c;
/* 650  */   color: #fff;

/* style.css */

/* 651  */   font-size: 12px;
/* 652  */   font-size: 0.75rem;
/* 653  */   font-weight: bold;
/* 654  */   line-height: 1;
/* 655  */   padding: 13px 20px;
/* 656  */   text-transform: uppercase;
/* 657  */   font-family: "Ubuntu", sans-serif;
/* 658  */ }
/* 659  */ button:hover,
/* 660  */ input[type=button]:hover,
/* 661  */ input[type=reset]:hover,
/* 662  */ input[type=submit]:hover {
/* 663  */   background: #222222;
/* 664  */ }
/* 665  */ button:active, button:focus,
/* 666  */ input[type=button]:active,
/* 667  */ input[type=button]:focus,
/* 668  */ input[type=reset]:active,
/* 669  */ input[type=reset]:focus,
/* 670  */ input[type=submit]:active,
/* 671  */ input[type=submit]:focus {
/* 672  */   background: #222222;
/* 673  */ }
/* 674  */
/* 675  */ .th-readmore {
/* 676  */   display: inline-block;
/* 677  */   border-radius: 3px;
/* 678  */   font-weight: bold;
/* 679  */   color: #ffffff;
/* 680  */   font-size: 11px;
/* 681  */   background: #e74c3c;
/* 682  */   padding: 8px 15px;
/* 683  */   text-decoration: none;
/* 684  */   text-transform: uppercase;
/* 685  */   font-family: "Ubuntu", sans-serif;
/* 686  */ }
/* 687  */
/* 688  */ .th-readmore:hover,
/* 689  */ .th-readmore:focus {
/* 690  */   background: #222;
/* 691  */   text-decoration: none;
/* 692  */   color: #ffffff;
/* 693  */ }
/* 694  */
/* 695  */ .th-readmore:active,
/* 696  */ .th-readmore:visited {
/* 697  */   color: #ffffff;
/* 698  */ }
/* 699  */
/* 700  */ input[type=text],

/* style.css */

/* 701  */ input[type=email],
/* 702  */ input[type=url],
/* 703  */ input[type=password],
/* 704  */ input[type=search],
/* 705  */ input[type=number],
/* 706  */ input[type=tel],
/* 707  */ input[type=range],
/* 708  */ input[type=date],
/* 709  */ input[type=month],
/* 710  */ input[type=week],
/* 711  */ input[type=time],
/* 712  */ input[type=datetime],
/* 713  */ input[type=datetime-local],
/* 714  */ input[type=color],
/* 715  */ textarea {
/* 716  */   color: #666;
/* 717  */   border: 1px solid #ddd;
/* 718  */   padding: 8px 5px;
/* 719  */ }
/* 720  */ input[type=text]:focus,
/* 721  */ input[type=email]:focus,
/* 722  */ input[type=url]:focus,
/* 723  */ input[type=password]:focus,
/* 724  */ input[type=search]:focus,
/* 725  */ input[type=number]:focus,
/* 726  */ input[type=tel]:focus,
/* 727  */ input[type=range]:focus,
/* 728  */ input[type=date]:focus,
/* 729  */ input[type=month]:focus,
/* 730  */ input[type=week]:focus,
/* 731  */ input[type=time]:focus,
/* 732  */ input[type=datetime]:focus,
/* 733  */ input[type=datetime-local]:focus,
/* 734  */ input[type=color]:focus,
/* 735  */ textarea:focus {
/* 736  */   color: #111;
/* 737  */ }
/* 738  */
/* 739  */ select {
/* 740  */   border: 1px solid #ddd;
/* 741  */ }
/* 742  */
/* 743  */ textarea {
/* 744  */   width: 100%;
/* 745  */ }
/* 746  */
/* 747  */ /*--------------------------------------------------------------
/* 748  *| # Navigation
/* 749  *| --------------------------------------------------------------*/
/* 750  */ /*--------------------------------------------------------------

/* style.css *|

/* 751  *| ## Links
/* 752  *| --------------------------------------------------------------*/
/* 753  */ a {
/* 754  */   color: #3498DB;
/* 755  */   text-decoration: none;
/* 756  */ }
/* 757  */ a:visited {
/* 758  */   color: #2980B9;
/* 759  */ }
/* 760  */ a:hover, a:focus, a:active {
/* 761  */   color: #e74c3c;
/* 762  */   text-decoration: none;
/* 763  */ }
/* 764  */ a:focus {
/* 765  */   outline: thin dotted;
/* 766  */ }
/* 767  */ a:hover, a:active {
/* 768  */   outline: 0;
/* 769  */ }
/* 770  */
/* 771  */ /*--------------------------------------------------------------
/* 772  *| ## Menus
/* 773  *| --------------------------------------------------------------*/
/* 774  */ .hm-nav-container {
/* 775  */   position: relative;
/* 776  */   background-color: #222;
/* 777  */   clear: both;
/* 778  */ }
/* 779  */
/* 780  */ .main-navigation {
/* 781  */   background-color: #222;
/* 782  */   clear: both;
/* 783  */   display: block;
/* 784  */   float: left;
/* 785  */   font-family: "Ubuntu", sans-serif;
/* 786  */   width: 100%;
/* 787  */ }
/* 788  */ .main-navigation a {
/* 789  */   line-height: 20px;
/* 790  */   padding: 12.5px 17px;
/* 791  */   color: #ddd;
/* 792  */ }
/* 793  */ .main-navigation a:hover {
/* 794  */   background-color: #e74c3c;
/* 795  */   color: #ffffff;
/* 796  */ }
/* 797  */ .main-navigation ul {
/* 798  */   display: none;
/* 799  */   font-size: 14px;
/* 800  */   font-size: 0.875rem;

/* style.css */

/* 801  */   font-weight: bold;
/* 802  */   list-style: none;
/* 803  */   margin: 0;
/* 804  */   padding-left: 0;
/* 805  */   text-transform: uppercase;
/* 806  */ }
/* 807  */ .main-navigation ul ul {
/* 808  */   box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
/* 809  */   float: left;
/* 810  */   font-weight: normal;
/* 811  */   position: absolute;
/* 812  */   left: -999em;
/* 813  */   z-index: 99999;
/* 814  */   background: #333333;
/* 815  */   text-transform: none;
/* 816  */ }
/* 817  */ .main-navigation ul ul ul {
/* 818  */   left: -999em;
/* 819  */   top: 0;
/* 820  */ }
/* 821  */ .main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
/* 822  */   left: 100%;
/* 823  */ }
/* 824  */ .main-navigation ul ul a {
/* 825  */   width: 200px;
/* 826  */   padding: 10px 17px;
/* 827  */ }
/* 828  */ .main-navigation ul li:hover > ul,
/* 829  */ .main-navigation ul li.focus > ul {
/* 830  */   left: auto;
/* 831  */ }
/* 832  */ @media (max-width: 991px) {
/* 833  */   .main-navigation ul {
/* 834  */     display: none;
/* 835  */   }
/* 836  */ }
/* 837  */ .main-navigation li {
/* 838  */   float: left;
/* 839  */   position: relative;
/* 840  */ }
/* 841  */ .main-navigation a {
/* 842  */   display: block;
/* 843  */   text-decoration: none;
/* 844  */ }
/* 845  */ .main-navigation .current_page_item > a,
/* 846  */ .main-navigation .current-menu-item > a,
/* 847  */ .main-navigation .current_page_ancestor > a,
/* 848  */ .main-navigation .current-menu-ancestor > a {
/* 849  */   background-color: #e74c3c;
/* 850  */   color: #ffffff;

/* style.css */

/* 851  */ }
/* 852  */
/* 853  */ .main-navigation .menu-item-has-children > a:after,
/* 854  */ .main-navigation .page_item_has_children > a:after {
/* 855  */   content: "\f0d7";
/* 856  */   line-height: 1;
/* 857  */   font-size: 11px;
/* 858  */   margin: 1px 0 0 10px;
/* 859  */ }
/* 860  */
/* 861  */ .main-navigation .menu-item-has-children .menu-item-has-children > a:after,
/* 862  */ .main-navigation .page_item_has_children .menu-item-has-children > a:after {
/* 863  */   content: "\f0da";
/* 864  */   float: right;
/* 865  */   line-height: 20px;
/* 866  */   font-size: 11px;
/* 867  */   margin: 0 0 0 10px;
/* 868  */ }
/* 869  */
/* 870  */ /* Small menu. */
/* 871  */ .menu-toggle,
/* 872  */ .main-navigation.toggled ul {
/* 873  */   display: block;
/* 874  */ }
/* 875  */
/* 876  */ @media screen and (min-width: 992px) {
/* 877  */   .menu-toggle {
/* 878  */     display: none;
/* 879  */   }
/* 880  */   .main-navigation ul {
/* 881  */     display: block;
/* 882  */   }
/* 883  */ }
/* 884  */ .comment-navigation,
/* 885  */ .posts-navigation,
/* 886  */ .post-navigation {
/* 887  */   clear: both;
/* 888  */ }
/* 889  */ .site-main .comment-navigation,
/* 890  */ .site-main .posts-navigation,
/* 891  */ .site-main .post-navigation {
/* 892  */   margin: 0 0 3em;
/* 893  */   overflow: hidden;
/* 894  */ }
/* 895  */ .comment-navigation .nav-previous,
/* 896  */ .posts-navigation .nav-previous,
/* 897  */ .post-navigation .nav-previous {
/* 898  */   float: left;
/* 899  */   width: 50%;
/* 900  */ }

/* style.css */

/* 901  */ .comment-navigation .nav-next,
/* 902  */ .posts-navigation .nav-next,
/* 903  */ .post-navigation .nav-next {
/* 904  */   float: right;
/* 905  */   text-align: right;
/* 906  */   width: 50%;
/* 907  */ }
/* 908  */
/* 909  */ .post-navigation .meta-nav {
/* 910  */   font-family: "Ubuntu", sans-serif;
/* 911  */   display: block;
/* 912  */   color: #aaa;
/* 913  */   font-size: 16px;
/* 914  */   font-size: 1rem;
/* 915  */   letter-spacing: 1px;
/* 916  */   margin-bottom: 5px;
/* 917  */   text-transform: uppercase;
/* 918  */ }
/* 919  */ .post-navigation .post-title {
/* 920  */   color: #222;
/* 921  */   font-weight: bold;
/* 922  */ }
/* 923  */ .post-navigation .post-title:hover {
/* 924  */   color: #e74c3c;
/* 925  */ }
/* 926  */ .post-navigation .nav-previous {
/* 927  */   padding-right: 5px;
/* 928  */ }
/* 929  */ .post-navigation .nav-next {
/* 930  */   padding-left: 5px;
/* 931  */ }
/* 932  */
/* 933  */ /* Top Navigation */
/* 934  */ .top-navigation {
/* 935  */   clear: both;
/* 936  */   display: inline-block;
/* 937  */   margin-left: 10px;
/* 938  */ }
/* 939  */ .top-navigation a {
/* 940  */   color: #222;
/* 941  */   line-height: 20px;
/* 942  */   padding: 7.5px 9px;
/* 943  */   font-size: 12px;
/* 944  */   font-size: 0.75rem;
/* 945  */   font-weight: 500;
/* 946  */ }
/* 947  */ .top-navigation a:hover {
/* 948  */   color: #e74c3c;
/* 949  */ }
/* 950  */ .top-navigation ul {

/* style.css */

/* 951  */   display: none;
/* 952  */   list-style: none;
/* 953  */   margin: 0;
/* 954  */   padding-left: 0;
/* 955  */ }
/* 956  */ .top-navigation ul ul {
/* 957  */   box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
/* 958  */   float: left;
/* 959  */   position: absolute;
/* 960  */   left: -999em;
/* 961  */   z-index: 99999;
/* 962  */   background: #ECF0F1;
/* 963  */ }
/* 964  */ .top-navigation ul ul ul {
/* 965  */   left: -999em;
/* 966  */   top: 0;
/* 967  */ }
/* 968  */ .top-navigation ul ul li:hover > ul, .top-navigation ul ul li.focus > ul {
/* 969  */   left: 100%;
/* 970  */ }
/* 971  */ .top-navigation ul ul a {
/* 972  */   width: 200px;
/* 973  */   color: #222;
/* 974  */ }
/* 975  */ .top-navigation ul ul a:hover {
/* 976  */   background: #e74c3c;
/* 977  */   color: #fff;
/* 978  */ }
/* 979  */ .top-navigation ul li:hover > ul,
/* 980  */ .top-navigation ul li.focus > ul {
/* 981  */   left: auto;
/* 982  */ }
/* 983  */ @media (max-width: 991px) {
/* 984  */   .top-navigation ul {
/* 985  */     display: none;
/* 986  */   }
/* 987  */ }
/* 988  */ .top-navigation li {
/* 989  */   float: left;
/* 990  */   position: relative;
/* 991  */ }
/* 992  */ .top-navigation a {
/* 993  */   display: block;
/* 994  */   text-decoration: none;
/* 995  */ }
/* 996  */ .top-navigation .menu-item-has-children > a:after,
/* 997  */ .top-navigation .page_item_has_children > a:after {
/* 998  */   content: "\f0d7";
/* 999  */   line-height: 1;
/* 1000 */   font-size: 10px;

/* style.css */

/* 1001 */   margin: 0 0 0 10px;
/* 1002 */ }
/* 1003 */
/* 1004 */ .top-navigation .menu-item-has-children .menu-item-has-children > a:after,
/* 1005 */ .top-navigation .page_item_has_children .menu-item-has-children > a:after {
/* 1006 */   content: "\f0da";
/* 1007 */   float: right;
/* 1008 */   line-height: 20px;
/* 1009 */   font-size: 10px;
/* 1010 */   margin: 0 0 0 10px;
/* 1011 */ }
/* 1012 */
/* 1013 */ /* Small menu. */
/* 1014 */ .menu-toggle,
/* 1015 */ .top-navigation.toggled ul {
/* 1016 */   display: block;
/* 1017 */ }
/* 1018 */
/* 1019 */ @media screen and (min-width: 992px) {
/* 1020 */   .menu-toggle {
/* 1021 */     display: none;
/* 1022 */   }
/* 1023 */   .top-navigation ul {
/* 1024 */     display: block;
/* 1025 */   }
/* 1026 */ }
/* 1027 */ #main-nav-button {
/* 1028 */   color: #ddd;
/* 1029 */   display: none;
/* 1030 */   line-height: 45px;
/* 1031 */   margin: 0 0 0 30px;
/* 1032 */   text-align: left;
/* 1033 */   padding: 0 16px;
/* 1034 */   font-weight: bold;
/* 1035 */   font-size: 14px;
/* 1036 */   text-transform: uppercase;
/* 1037 */ }
/* 1038 */ #main-nav-button:hover {
/* 1039 */   color: #fff;
/* 1040 */   background: #e74c3c;
/* 1041 */   text-decoration: none;
/* 1042 */ }
/* 1043 */ @media (max-width: 991px) {
/* 1044 */   #main-nav-button {
/* 1045 */     display: inline-block;
/* 1046 */   }
/* 1047 */ }
/* 1048 */
/* 1049 */ @media (max-width: 991px) {
/* 1050 */   .hm-topnavbutton {

/* style.css */

/* 1051 */     background: #ECF0F1;
/* 1052 */     border-bottom: 1px solid #ddd;
/* 1053 */     display: block;
/* 1054 */     height: 35px;
/* 1055 */     padding: 0 15px;
/* 1056 */   }
/* 1057 */ }
/* 1058 */
/* 1059 */ #top-nav-button {
/* 1060 */   display: none;
/* 1061 */   line-height: 35px;
/* 1062 */   text-align: left;
/* 1063 */   width: 100%;
/* 1064 */   color: #222222;
/* 1065 */   font-size: 12px;
/* 1066 */   font-weight: bold;
/* 1067 */   text-transform: uppercase;
/* 1068 */ }
/* 1069 */ #top-nav-button:hover {
/* 1070 */   color: #e74c3c;
/* 1071 */   text-decoration: none;
/* 1072 */ }
/* 1073 */ @media (max-width: 991px) {
/* 1074 */   #top-nav-button {
/* 1075 */     display: inline-block;
/* 1076 */   }
/* 1077 */ }
/* 1078 */
/* 1079 */ @media (min-width: 768px) {
/* 1080 */   .hitmag-full-width #top-nav-button {
/* 1081 */     margin-left: 20px;
/* 1082 */   }
/* 1083 */ }
/* 1084 */
/* 1085 */ #main-nav-button:before {
/* 1086 */   content: "\f0c9";
/* 1087 */ }
/* 1088 */
/* 1089 */ .main-nav-btn-lbl {
/* 1090 */   margin: 0 0 0 10px;
/* 1091 */ }
/* 1092 */
/* 1093 */ #top-nav-button:before {
/* 1094 */   content: "\f0c9";
/* 1095 */   margin: 0 10px;
/* 1096 */ }
/* 1097 */
/* 1098 */ .responsive-mainnav,
/* 1099 */ .responsive-topnav {
/* 1100 */   background: #333;

/* style.css */

/* 1101 */   display: none;
/* 1102 */   padding-right: 30px;
/* 1103 */ }
/* 1104 */ @media (min-width: 992px) {
/* 1105 */   .responsive-mainnav,
/* 1106 */   .responsive-topnav {
/* 1107 */     display: none !important;
/* 1108 */   }
/* 1109 */ }
/* 1110 */ .responsive-mainnav ul,
/* 1111 */ .responsive-topnav ul {
/* 1112 */   margin: 0;
/* 1113 */   padding: 5px 0 5px 30px;
/* 1114 */ }
/* 1115 */ .responsive-mainnav li,
/* 1116 */ .responsive-topnav li {
/* 1117 */   list-style: none;
/* 1118 */ }
/* 1119 */ .responsive-mainnav li a,
/* 1120 */ .responsive-topnav li a {
/* 1121 */   color: #eee;
/* 1122 */   line-height: 26px;
/* 1123 */   padding: 10px 15px;
/* 1124 */   text-decoration: none;
/* 1125 */   display: block;
/* 1126 */ }
/* 1127 */ .responsive-mainnav li a:hover,
/* 1128 */ .responsive-topnav li a:hover {
/* 1129 */   background: #e74c3c;
/* 1130 */ }
/* 1131 */
/* 1132 */ /* Social Menu */
/* 1133 */ .hm-social-menu {
/* 1134 */   display: inline-block;
/* 1135 */   float: right;
/* 1136 */   line-height: 35px;
/* 1137 */ }
/* 1138 */ .hm-social-menu a {
/* 1139 */   display: inline-block;
/* 1140 */   width: 24px;
/* 1141 */ }
/* 1142 */
/* 1143 */ .screen-reader-text {
/* 1144 */   position: absolute;
/* 1145 */   top: -9999em;
/* 1146 */   left: -9999em;
/* 1147 */ }
/* 1148 */
/* 1149 */ #hm-menu-social ul {
/* 1150 */   list-style: none;

/* style.css */

/* 1151 */   margin: 0;
/* 1152 */   text-align: center;
/* 1153 */   padding: 0;
/* 1154 */ }
/* 1155 */
/* 1156 */ #hm-menu-social ul li {
/* 1157 */   display: inline-block;
/* 1158 */   position: relative;
/* 1159 */ }
/* 1160 */
/* 1161 */ #hm-menu-social li a::before {
/* 1162 */   font-family: "Font Awesome 6 Brands";
/* 1163 */   font-weight: 400;
/* 1164 */   -webkit-font-smoothing: antialiased;
/* 1165 */   display: inline-block;
/* 1166 */   text-rendering: auto;
/* 1167 */   padding: 0 5px;
/* 1168 */   vertical-align: top;
/* 1169 */   font-size: 14px;
/* 1170 */   color: #222;
/* 1171 */ }
/* 1172 */
/* 1173 */ #hm-menu-social li.fa-brands a {
/* 1174 */   position: absolute;
/* 1175 */   top: 0;
/* 1176 */   bottom: 0;
/* 1177 */   left: 0;
/* 1178 */   right: 0;
/* 1179 */ }
/* 1180 */
/* 1181 */ #hm-menu-social li.fa-brands {
/* 1182 */   padding: 0 5px;
/* 1183 */ }
/* 1184 */
/* 1185 */ #hm-menu-social li a:hover {
/* 1186 */   color: #222;
/* 1187 */ }
/* 1188 */
/* 1189 */ #hm-menu-social li a[href*="wordpress.org"]::before,
/* 1190 */ #hm-menu-social li a[href*="wordpress.com"]::before {
/* 1191 */   content: "\f205";
/* 1192 */   color: #21759b;
/* 1193 */ }
/* 1194 */
/* 1195 */ #hm-menu-social li a[href*="facebook.com"]::before {
/* 1196 */   content: "\f39e";
/* 1197 */   color: #3b5998;
/* 1198 */ }
/* 1199 */
/* 1200 */ #hm-menu-social li a[href*="twitter.com"]::before {

/* style.css */

/* 1201 */   content: "\e61b";
/* 1202 */   color: #0f1419;
/* 1203 */ }
/* 1204 */
/* 1205 */ #hm-menu-social li a[href*="x.com"]::before {
/* 1206 */   content: "\e61b";
/* 1207 */   color: #0f1419;
/* 1208 */ }
/* 1209 */
/* 1210 */ #hm-menu-social li a[href*="dribbble.com"]::before {
/* 1211 */   content: "\f17d";
/* 1212 */   color: #ea4c89;
/* 1213 */ }
/* 1214 */
/* 1215 */ #hm-menu-social li a[href*="plus.google.com"]::before {
/* 1216 */   content: "\f0d5";
/* 1217 */   color: #dd4b39;
/* 1218 */ }
/* 1219 */
/* 1220 */ #hm-menu-social li a[href*="pinterest.com"]::before {
/* 1221 */   content: "\f0d2";
/* 1222 */   color: #c8232c;
/* 1223 */ }
/* 1224 */
/* 1225 */ #hm-menu-social li a[href*="github.com"]::before {
/* 1226 */   content: "\f09b";
/* 1227 */   color: #171515;
/* 1228 */ }
/* 1229 */
/* 1230 */ #hm-menu-social li a[href*="tumblr.com"]::before {
/* 1231 */   content: "\f173";
/* 1232 */   color: #34526f;
/* 1233 */ }
/* 1234 */
/* 1235 */ #hm-menu-social li a[href*="youtube.com"]::before {
/* 1236 */   content: "\f16a";
/* 1237 */   color: #c4302b;
/* 1238 */ }
/* 1239 */
/* 1240 */ #hm-menu-social li a[href*="flickr.com"]::before {
/* 1241 */   content: "\f16e";
/* 1242 */   color: #ff0084;
/* 1243 */ }
/* 1244 */
/* 1245 */ #hm-menu-social li a[href*="vimeo.com"]::before {
/* 1246 */   content: "\f27d";
/* 1247 */   color: #1AB7EA;
/* 1248 */ }
/* 1249 */
/* 1250 */ #hm-menu-social li a[href*="instagram.com"]::before {

/* style.css */

/* 1251 */   content: "\f16d";
/* 1252 */   color: #3f729b;
/* 1253 */ }
/* 1254 */
/* 1255 */ #hm-menu-social li a[href*="codepen.io"]::before {
/* 1256 */   content: "\f1cb";
/* 1257 */   color: #000;
/* 1258 */ }
/* 1259 */
/* 1260 */ #hm-menu-social li a[href*="linkedin.com"]::before {
/* 1261 */   content: "\f0e1";
/* 1262 */   color: #0e76a8;
/* 1263 */ }
/* 1264 */
/* 1265 */ #hm-menu-social li a[href*="yelp.com"]::before {
/* 1266 */   content: "\f1e9";
/* 1267 */   color: #d32323;
/* 1268 */ }
/* 1269 */
/* 1270 */ #hm-menu-social li a[href*="tiktok.com"]::before {
/* 1271 */   content: "\e07b";
/* 1272 */   color: #000000;
/* 1273 */ }
/* 1274 */
/* 1275 */ /* Search Box */
/* 1276 */ .hm-search-box-container {
/* 1277 */   display: none;
/* 1278 */ }
/* 1279 */
/* 1280 */ .hm-search-button-icon {
/* 1281 */   cursor: pointer;
/* 1282 */   float: right;
/* 1283 */   position: absolute;
/* 1284 */   top: 0;
/* 1285 */   right: 35px;
/* 1286 */   width: 30px;
/* 1287 */   line-height: 45px;
/* 1288 */   color: #ddd;
/* 1289 */   background: transparent;
/* 1290 */   padding: 0;
/* 1291 */ }
/* 1292 */ @media (max-width: 992px) {
/* 1293 */   .hm-search-button-icon {
/* 1294 */     z-index: 999999;
/* 1295 */     text-align: center;
/* 1296 */   }
/* 1297 */ }
/* 1298 */ .hm-search-button-icon:before {
/* 1299 */   font-size: 16px;
/* 1300 */   font-size: 1rem;

/* style.css */

/* 1301 */ }
/* 1302 */ .hm-search-button-icon:focus, .hm-search-button-icon:hover {
/* 1303 */   background-color: transparent;
/* 1304 */ }
/* 1305 */
/* 1306 */ .hm-search-button-icon:before {
/* 1307 */   content: "\f002";
/* 1308 */   cursor: pointer;
/* 1309 */   display: inline-block;
/* 1310 */ }
/* 1311 */
/* 1312 */ .hm-search-button-icon.hm-search-close:before {
/* 1313 */   content: "\f00d";
/* 1314 */   cursor: pointer;
/* 1315 */   display: inline-block;
/* 1316 */ }
/* 1317 */
/* 1318 */ .hm-search-box-container {
/* 1319 */   background: #fff;
/* 1320 */   border: 3px solid #E3E3E3;
/* 1321 */   display: none;
/* 1322 */   padding: 5px;
/* 1323 */   position: absolute;
/* 1324 */   top: 45px;
/* 1325 */   width: 345px;
/* 1326 */   z-index: 999;
/* 1327 */ }
/* 1328 */ @media (max-width: 480px) {
/* 1329 */   .hm-search-box-container {
/* 1330 */     width: 100%;
/* 1331 */     right: 0;
/* 1332 */   }
/* 1333 */ }
/* 1334 */ @media (min-width: 481px) {
/* 1335 */   .hm-search-box-container {
/* 1336 */     right: 25px;
/* 1337 */   }
/* 1338 */ }
/* 1339 */ @media (min-width: 768px) {
/* 1340 */   .hm-search-box-container {
/* 1341 */     right: 30px;
/* 1342 */   }
/* 1343 */ }
/* 1344 */ @media (min-width: 992px) {
/* 1345 */   .hm-search-box-container {
/* 1346 */     right: 40px;
/* 1347 */   }
/* 1348 */ }
/* 1349 */
/* 1350 */ #hm-search-form .search-form .search-submit {

/* style.css */

/* 1351 */   border-radius: 0;
/* 1352 */   box-shadow: none;
/* 1353 */   background-color: #e74c3c;
/* 1354 */   border: none;
/* 1355 */   color: #fff;
/* 1356 */   font-size: 12px;
/* 1357 */   font-size: 0.75rem;
/* 1358 */   border-radius: 3px;
/* 1359 */   font-weight: bold;
/* 1360 */   font-family: "Ubuntu", sans-serif;
/* 1361 */   height: 40px;
/* 1362 */   line-height: 40px;
/* 1363 */   padding: 0;
/* 1364 */   text-shadow: none;
/* 1365 */   text-transform: uppercase;
/* 1366 */   width: 92px;
/* 1367 */ }
/* 1368 */ #hm-search-form .search-form .search-submit:hover {
/* 1369 */   background: #222;
/* 1370 */ }
/* 1371 */ #hm-search-form .search-form .search-submit:focus {
/* 1372 */   outline: none;
/* 1373 */ }
/* 1374 */ #hm-search-form .search-form .search-field {
/* 1375 */   background: #f1f1f1;
/* 1376 */   border: none;
/* 1377 */   color: #222;
/* 1378 */   float: left;
/* 1379 */   height: 40px;
/* 1380 */   margin: 0;
/* 1381 */   padding: 0 11px;
/* 1382 */   width: 220px;
/* 1383 */ }
/* 1384 */ #hm-search-form .search-form .search-field:focus {
/* 1385 */   outline: none;
/* 1386 */ }
/* 1387 */
/* 1388 */ .pagination {
/* 1389 */   margin: 0 auto;
/* 1390 */   margin-top: 20px;
/* 1391 */   margin-bottom: 20px;
/* 1392 */   padding: 1em 0;
/* 1393 */   text-align: center;
/* 1394 */   display: block;
/* 1395 */ }
/* 1396 */
/* 1397 */ .nav-links .page-numbers {
/* 1398 */   color: #fff;
/* 1399 */ }
/* 1400 */

/* style.css */

/* 1401 */ .nav-links .page-numbers:hover {
/* 1402 */   color: #fff;
/* 1403 */ }
/* 1404 */
/* 1405 */ .page-numbers {
/* 1406 */   background-color: #333;
/* 1407 */   color: #fff;
/* 1408 */   padding: 10px 15px;
/* 1409 */   font-weight: bold;
/* 1410 */   margin: 0 2px;
/* 1411 */   border-radius: 3px;
/* 1412 */   display: inline-block;
/* 1413 */ }
/* 1414 */
/* 1415 */ .page-numbers:hover {
/* 1416 */   background: #666;
/* 1417 */ }
/* 1418 */
/* 1419 */ .nav-links .current {
/* 1420 */   background: #e74c3c;
/* 1421 */   color: #fff;
/* 1422 */   padding: 10px 15px;
/* 1423 */   font-weight: bold;
/* 1424 */   margin: 0 2px;
/* 1425 */ }
/* 1426 */
/* 1427 */ .infinite-scroll .navigation {
/* 1428 */   display: none;
/* 1429 */ }
/* 1430 */
/* 1431 */ #infinite-handle {
/* 1432 */   text-align: center;
/* 1433 */   margin: 25px 0 50px 0;
/* 1434 */ }
/* 1435 */
/* 1436 */ #infinite-handle span {
/* 1437 */   background: #333;
/* 1438 */   cursor: pointer;
/* 1439 */   font-size: 13px;
/* 1440 */   padding: 10px 30px;
/* 1441 */   font-weight: bold;
/* 1442 */ }
/* 1443 */
/* 1444 */ #infinite-handle span.infinite-loader {
/* 1445 */   text-align: center;
/* 1446 */ }
/* 1447 */
/* 1448 */ .infinite-scroll .infinite-loader {
/* 1449 */   width: 100%;
/* 1450 */   text-align: center;

/* style.css */

/* 1451 */ }
/* 1452 */
/* 1453 */ .infinite-scroll .infinite-loader .spinner {
/* 1454 */   bottom: -1em;
/* 1455 */   left: auto;
/* 1456 */   margin: 0 auto;
/* 1457 */ }
/* 1458 */
/* 1459 */ .hm-nwrap {
/* 1460 */   margin: 0 auto;
/* 1461 */   position: relative;
/* 1462 */ }
/* 1463 */ @media (min-width: 992px) {
/* 1464 */   .hm-nwrap {
/* 1465 */     max-width: 990px;
/* 1466 */   }
/* 1467 */ }
/* 1468 */ @media (min-width: 768px) {
/* 1469 */   .hm-nwrap {
/* 1470 */     max-width: 760px;
/* 1471 */   }
/* 1472 */ }
/* 1473 */
/* 1474 */ .main-navigation .menu-item-has-children > a:after,
/* 1475 */ .main-navigation .page_item_has_children > a:after,
/* 1476 */ .main-navigation .menu-item-has-children .menu-item-has-children > a:after,
/* 1477 */ .main-navigation .page_item_has_children .menu-item-has-children > a:after,
/* 1478 */ .top-navigation .menu-item-has-children > a:after,
/* 1479 */ .top-navigation .page_item_has_children > a:after,
/* 1480 */ .top-navigation .menu-item-has-children .menu-item-has-children > a:after,
/* 1481 */ .top-navigation .page_item_has_children .menu-item-has-children > a:after,
/* 1482 */ #main-nav-button:before,
/* 1483 */ #top-nav-button:before,
/* 1484 */ .hm-search-button-icon:before,
/* 1485 */ .hm-search-button-icon.hm-search-close:before {
/* 1486 */   display: inline-block;
/* 1487 */   text-rendering: auto;
/* 1488 */   -webkit-font-smoothing: antialiased;
/* 1489 */   font-family: "Font Awesome 6 Free";
/* 1490 */   font-weight: 900;
/* 1491 */ }
/* 1492 */
/* 1493 */ .hm-header-breadcrumb {
/* 1494 */   margin: -20px 0 20px;
/* 1495 */   font-size: 15px;
/* 1496 */ }
/* 1497 */
/* 1498 */ .hm-breadcrumb-wrap {
/* 1499 */   margin: 0 0 10px;
/* 1500 */   font-size: 14px;

/* style.css */

/* 1501 */   font-weight: 600;
/* 1502 */ }
/* 1503 */
/* 1504 */ .archive .hm-breadcrumb-wrap {
/* 1505 */   margin: 0 0 15px;
/* 1506 */ }
/* 1507 */
/* 1508 */ /*--------------------------------------------------------------
/* 1509 *| # Accessibility
/* 1510 *| --------------------------------------------------------------*/
/* 1511 */ /* Text meant only for screen readers. */
/* 1512 */ .screen-reader-text {
/* 1513 */   clip: rect(1px, 1px, 1px, 1px);
/* 1514 */   position: absolute !important;
/* 1515 */   height: 1px;
/* 1516 */   width: 1px;
/* 1517 */   overflow: hidden;
/* 1518 */ }
/* 1519 */ .screen-reader-text:focus {
/* 1520 */   background-color: #f1f1f1;
/* 1521 */   border-radius: 3px;
/* 1522 */   box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
/* 1523 */   clip: auto !important;
/* 1524 */   color: #21759b;
/* 1525 */   display: block;
/* 1526 */   font-size: 14px;
/* 1527 */   font-size: 0.875rem;
/* 1528 */   font-weight: bold;
/* 1529 */   height: auto;
/* 1530 */   left: 5px;
/* 1531 */   line-height: normal;
/* 1532 */   padding: 15px 23px 14px;
/* 1533 */   text-decoration: none;
/* 1534 */   top: 5px;
/* 1535 */   width: auto;
/* 1536 */   z-index: 100000; /* Above WP toolbar. */
/* 1537 */ }
/* 1538 */
/* 1539 */ /* Do not show the outline on the skip link target. */
/* 1540 */ #content[tabindex="-1"]:focus {
/* 1541 */   outline: 0;
/* 1542 */ }
/* 1543 */
/* 1544 */ /*--------------------------------------------------------------
/* 1545 *| # Alignments
/* 1546 *| --------------------------------------------------------------*/
/* 1547 */ .alignleft {
/* 1548 */   display: inline;
/* 1549 */   float: left;
/* 1550 */   margin-right: 1.5em;

/* style.css */

/* 1551 */ }
/* 1552 */
/* 1553 */ .alignright {
/* 1554 */   display: inline;
/* 1555 */   float: right;
/* 1556 */   margin-left: 1.5em;
/* 1557 */ }
/* 1558 */
/* 1559 */ .aligncenter {
/* 1560 */   clear: both;
/* 1561 */   display: block;
/* 1562 */   margin-left: auto;
/* 1563 */   margin-right: auto;
/* 1564 */ }
/* 1565 */
/* 1566 */ /*--------------------------------------------------------------
/* 1567 *| # Clearings
/* 1568 *| --------------------------------------------------------------*/
/* 1569 */ .clear:before,
/* 1570 */ .clear:after,
/* 1571 */ .entry-content:before,
/* 1572 */ .entry-content:after,
/* 1573 */ .comment-content:before,
/* 1574 */ .comment-content:after,
/* 1575 */ .site-header:before,
/* 1576 */ .site-header:after,
/* 1577 */ .site-content:before,
/* 1578 */ .site-content:after,
/* 1579 */ .site-footer:before,
/* 1580 */ .site-footer:after {
/* 1581 */   content: "";
/* 1582 */   display: table;
/* 1583 */   table-layout: fixed;
/* 1584 */ }
/* 1585 */
/* 1586 */ .clear:after,
/* 1587 */ .entry-content:after,
/* 1588 */ .comment-content:after,
/* 1589 */ .site-header:after,
/* 1590 */ .site-content:after,
/* 1591 */ .site-footer:after {
/* 1592 */   clear: both;
/* 1593 */ }
/* 1594 */
/* 1595 */ /*--------------------------------------------------------------
/* 1596 *| # Widgets
/* 1597 *| --------------------------------------------------------------*/
/* 1598 */ .widget {
/* 1599 */   margin: 0 0 40px;
/* 1600 */   display: block;

/* style.css */

/* 1601 */   /* Make sure select elements fit in widgets. */
/* 1602 */ }
/* 1603 */ .widget::after {
/* 1604 */   content: "";
/* 1605 */   clear: both;
/* 1606 */   display: table;
/* 1607 */ }
/* 1608 */ .widget select {
/* 1609 */   max-width: 100%;
/* 1610 */ }
/* 1611 */
/* 1612 */ .elementor-widget-container h5,
/* 1613 */ .widget-title {
/* 1614 */   font-size: 18px;
/* 1615 */   font-size: 1.125rem;
/* 1616 */   border-bottom: 2px solid #e74c3c;
/* 1617 */   font-family: "Ubuntu", sans-serif;
/* 1618 */   font-weight: bold;
/* 1619 */   line-height: 1.3;
/* 1620 */   text-transform: uppercase;
/* 1621 */   display: inline-block;
/* 1622 */   margin-top: 0;
/* 1623 */   margin-bottom: 24px;
/* 1624 */ }
/* 1625 */
/* 1626 */ .footer-widget-title {
/* 1627 */   font-size: 18px;
/* 1628 */   font-size: 1.125rem;
/* 1629 */   border-bottom: 2px solid #e74c3c;
/* 1630 */   font-family: "Ubuntu", sans-serif;
/* 1631 */   font-weight: bold;
/* 1632 */   line-height: 1.3;
/* 1633 */   text-transform: uppercase;
/* 1634 */   display: inline-block;
/* 1635 */   color: #eee;
/* 1636 */   margin-top: 0;
/* 1637 */   margin-bottom: 24px;
/* 1638 */ }
/* 1639 */
/* 1640 */ .hm-header-sidebar {
/* 1641 */   max-width: 100%;
/* 1642 */   margin: 20px 0 0;
/* 1643 */   overflow: hidden;
/* 1644 */   float: right;
/* 1645 */ }
/* 1646 */ .hm-header-sidebar .widget {
/* 1647 */   margin-bottom: 20px;
/* 1648 */ }
/* 1649 */
/* 1650 */ .widget ul,

/* style.css */

/* 1651 */ .widget-area ul {
/* 1652 */   margin: 0;
/* 1653 */   padding: 0;
/* 1654 */   list-style: none;
/* 1655 */ }
/* 1656 */ .widget ul li:not(.wp-block-social-link),
/* 1657 */ .widget-area ul li:not(.wp-block-social-link) {
/* 1658 */   padding: 5px 10px;
/* 1659 */ }
/* 1660 */ .widget a,
/* 1661 */ .widget-area a {
/* 1662 */   color: #222222;
/* 1663 */ }
/* 1664 */ .widget a:hover,
/* 1665 */ .widget-area a:hover {
/* 1666 */   color: #e74c3c;
/* 1667 */ }
/* 1668 */
/* 1669 */ a.hm-viewall {
/* 1670 */   font-family: "Ubuntu", sans-serif;
/* 1671 */   font-weight: bold;
/* 1672 */   text-transform: uppercase;
/* 1673 */   float: right;
/* 1674 */   margin-top: 2px;
/* 1675 */   margin-bottom: 20px;
/* 1676 */   font-size: 10px;
/* 1677 */   padding: 3px 10px;
/* 1678 */   border-radius: 3px;
/* 1679 */   color: #fff;
/* 1680 */   background: #e74c3c;
/* 1681 */ }
/* 1682 */ a.hm-viewall:visited {
/* 1683 */   color: #fff;
/* 1684 */ }
/* 1685 */ a.hm-viewall:hover {
/* 1686 */   background: #222;
/* 1687 */   color: #ffffff;
/* 1688 */ }
/* 1689 */
/* 1690 */ .hm-viewall:after {
/* 1691 */   content: "\f101";
/* 1692 */   font-family: "Font Awesome 6 Free";
/* 1693 */   font-weight: 900;
/* 1694 */   display: inline-block;
/* 1695 */   text-rendering: auto;
/* 1696 */   -webkit-font-smoothing: antialiased;
/* 1697 */   cursor: pointer;
/* 1698 */   margin-left: 0.3em;
/* 1699 */   font-size: 8px;
/* 1700 */ }

/* style.css */

/* 1701 */
/* 1702 */ .footer-widget-area {
/* 1703 */   overflow: hidden;
/* 1704 */   color: #ccc;
/* 1705 */   margin: 0 -20px;
/* 1706 */ }
/* 1707 */ .footer-widget-area .widget {
/* 1708 */   margin: 50px 0;
/* 1709 */ }
/* 1710 */ .footer-widget-area .widget ul {
/* 1711 */   margin: 0;
/* 1712 */   padding: 0 1px;
/* 1713 */   list-style: none;
/* 1714 */ }
/* 1715 */ .footer-widget-area .widget ul li:not(.wp-block-social-link) {
/* 1716 */   padding: 6px 0;
/* 1717 */ }
/* 1718 */ .footer-widget-area .widget ul li:not(.wp-block-social-link):first-child {
/* 1719 */   padding-top: 0;
/* 1720 */ }
/* 1721 */ .footer-widget-area .widget a {
/* 1722 */   color: #ddd;
/* 1723 */ }
/* 1724 */ .footer-widget-area .widget a:hover {
/* 1725 */   color: #e74c3c;
/* 1726 */ }
/* 1727 */
/* 1728 */ .site-info {
/* 1729 */   line-height: 20px;
/* 1730 */   background: #222222;
/* 1731 */   font-size: 14px;
/* 1732 */   font-size: 0.875rem;
/* 1733 */   color: #ddd;
/* 1734 */   overflow: hidden;
/* 1735 */ }
/* 1736 */ .site-info a {
/* 1737 */   color: #fff;
/* 1738 */ }
/* 1739 */ .site-info a:hover {
/* 1740 */   color: #e74c3c;
/* 1741 */ }
/* 1742 */
/* 1743 */ .site-info-owner {
/* 1744 */   padding: 15px 0 5px;
/* 1745 */   line-height: 20px;
/* 1746 */ }
/* 1747 */ @media (min-width: 768px) {
/* 1748 */   .site-info-owner {
/* 1749 */     width: 50%;
/* 1750 */     float: left;

/* style.css */

/* 1751 */     padding: 20px 20px 20px 0;
/* 1752 */   }
/* 1753 */ }
/* 1754 */
/* 1755 */ .site-info-designer {
/* 1756 */   line-height: 20px;
/* 1757 */   padding: 5px 0 15px;
/* 1758 */ }
/* 1759 */ @media (min-width: 768px) {
/* 1760 */   .site-info-designer {
/* 1761 */     width: 50%;
/* 1762 */     float: left;
/* 1763 */     text-align: right;
/* 1764 */     padding: 20px 0 20px 20px;
/* 1765 */   }
/* 1766 */ }
/* 1767 */
/* 1768 */ .footer-sidebar {
/* 1769 */   padding: 0 20px;
/* 1770 */ }
/* 1771 */ @media (min-width: 768px) {
/* 1772 */   .footer-sidebar {
/* 1773 */     width: 33.33333%;
/* 1774 */     float: left;
/* 1775 */   }
/* 1776 */ }
/* 1777 */
/* 1778 */ /* Search widget */
/* 1779 */ .search-form {
/* 1780 */   display: block;
/* 1781 */   position: relative;
/* 1782 */   margin: 0;
/* 1783 */   padding: 0;
/* 1784 */   overflow: hidden;
/* 1785 */   width: 100%;
/* 1786 */ }
/* 1787 */
/* 1788 */ .search-form .search-field {
/* 1789 */   display: block;
/* 1790 */   margin: 0;
/* 1791 */   height: 45px;
/* 1792 */   padding: 10px 85px 10px 10px;
/* 1793 */   box-sizing: border-box;
/* 1794 */   -webkit-appearance: none;
/* 1795 */   border-radius: 3px;
/* 1796 */   width: 100%;
/* 1797 */ }
/* 1798 */
/* 1799 */ .search-form label {
/* 1800 */   display: block;

/* style.css */

/* 1801 */ }
/* 1802 */
/* 1803 */ .search-form .search-field::-moz-placeholder {
/* 1804 */   color: #aaa;
/* 1805 */   font-style: italic;
/* 1806 */ }
/* 1807 */
/* 1808 */ .search-form .search-field::placeholder {
/* 1809 */   color: #aaa;
/* 1810 */   font-style: italic;
/* 1811 */ }
/* 1812 */
/* 1813 */ .search-form .search-submit {
/* 1814 */   height: 45px;
/* 1815 */   position: absolute;
/* 1816 */   top: 0;
/* 1817 */   right: 0;
/* 1818 */   border: none;
/* 1819 */   padding: 10px 20px;
/* 1820 */   cursor: pointer;
/* 1821 */   font-size: 12px;
/* 1822 */   font-size: 0.75rem;
/* 1823 */   text-transform: uppercase;
/* 1824 */   font-weight: bold;
/* 1825 */   background: #e74c3c;
/* 1826 */   color: #fff;
/* 1827 */ }
/* 1828 */
/* 1829 */ .search-form .search-submit:hover {
/* 1830 */   background: #222;
/* 1831 */ }
/* 1832 */
/* 1833 */ @media (min-width: 768px) {
/* 1834 */   .hm-header-sidebar .widget_search {
/* 1835 */     min-width: 345px;
/* 1836 */     margin: 25px 0;
/* 1837 */   }
/* 1838 */ }
/* 1839 */ /* Magazine Widgets */
/* 1840 */ .hmb-post,
/* 1841 */ .hms-posts {
/* 1842 */   margin-left: 0;
/* 1843 */   width: 47.3469387755%;
/* 1844 */   float: left;
/* 1845 */ }
/* 1846 */ @media (max-width: 768px) {
/* 1847 */   .hmb-post,
/* 1848 */   .hms-posts {
/* 1849 */     width: 100%;
/* 1850 */     margin-left: 0;

/* style.css */

/* 1851 */     margin-right: 0;
/* 1852 */     float: none;
/* 1853 */   }
/* 1854 */ }
/* 1855 */
/* 1856 */ .hmb-post {
/* 1857 */   margin-right: 5.306122449%;
/* 1858 */ }
/* 1859 */ .hmb-post img {
/* 1860 */   margin-bottom: 16px;
/* 1861 */   width: 100%;
/* 1862 */   vertical-align: top;
/* 1863 */ }
/* 1864 */ .hmb-post .cat-links {
/* 1865 */   margin: 0 0 0.455em 0;
/* 1866 */   font-size: 11px;
/* 1867 */   font-size: 0.6875rem;
/* 1868 */   font-weight: bold;
/* 1869 */   text-transform: uppercase;
/* 1870 */   line-height: 1.2;
/* 1871 */ }
/* 1872 */
/* 1873 */ .hms-posts {
/* 1874 */   margin-right: 0;
/* 1875 */ }
/* 1876 */
/* 1877 */ .hmb-entry-title {
/* 1878 */   font-size: 21.008px;
/* 1879 */   font-size: 1.313rem;
/* 1880 */   font-weight: bold;
/* 1881 */   line-height: 1.3;
/* 1882 */   margin: 0 0 0.286em;
/* 1883 */   -ms-word-wrap: break-word;
/* 1884 */   word-wrap: break-word;
/* 1885 */ }
/* 1886 */ .hmb-entry-title a {
/* 1887 */   color: #222222;
/* 1888 */   line-height: 1.3;
/* 1889 */ }
/* 1890 */ .hmb-entry-title a:hover {
/* 1891 */   color: #e74c3c;
/* 1892 */ }
/* 1893 */
/* 1894 */ .hmb-entry-meta,
/* 1895 */ .hms-meta {
/* 1896 */   color: #888;
/* 1897 */   font-size: 13px;
/* 1898 */   font-size: 0.8125rem;
/* 1899 */   margin: 0;
/* 1900 */ }

/* style.css */

/* 1901 */ .hmb-entry-meta a,
/* 1902 */ .hms-meta a {
/* 1903 */   color: #888;
/* 1904 */ }
/* 1905 */ .hmb-entry-meta a:hover,
/* 1906 */ .hms-meta a:hover {
/* 1907 */   color: #e74c3c;
/* 1908 */ }
/* 1909 */
/* 1910 */ .hmb-entry-summary {
/* 1911 */   margin: 0.813em 0 0;
/* 1912 */   -ms-word-wrap: break-word;
/* 1913 */   word-wrap: break-word;
/* 1914 */ }
/* 1915 */ .hmb-entry-summary p {
/* 1916 */   margin: 0 0 1.438em;
/* 1917 */ }
/* 1918 */
/* 1919 */ .hms-post {
/* 1920 */   display: block;
/* 1921 */   margin-bottom: 25px;
/* 1922 */   overflow: hidden;
/* 1923 */ }
/* 1924 */ .hms-post:last-child {
/* 1925 */   margin-bottom: 0;
/* 1926 */ }
/* 1927 */
/* 1928 */ .hms-thumb {
/* 1929 */   float: left;
/* 1930 */   margin-right: 15px;
/* 1931 */ }
/* 1932 */ .hms-thumb img {
/* 1933 */   max-width: 125px;
/* 1934 */   vertical-align: top;
/* 1935 */ }
/* 1936 */
/* 1937 */ .hms-details {
/* 1938 */   overflow: hidden;
/* 1939 */ }
/* 1940 */
/* 1941 */ .hms-title {
/* 1942 */   font-size: 16px;
/* 1943 */   font-size: 1rem;
/* 1944 */   margin: 0 0 0.8em;
/* 1945 */   -ms-word-wrap: break-word;
/* 1946 */   word-wrap: break-word;
/* 1947 */ }
/* 1948 */ .hms-title a {
/* 1949 */   color: #222222;
/* 1950 */   line-height: 1.3;

/* style.css */

/* 1951 */ }
/* 1952 */ .hms-title a:hover {
/* 1953 */   color: #e74c3c;
/* 1954 */ }
/* 1955 */
/* 1956 */ .widget_recent_entries span.post-date {
/* 1957 */   color: #888;
/* 1958 */   font-size: 13px;
/* 1959 */   font-size: 0.8125rem;
/* 1960 */   display: block;
/* 1961 */   margin: 3px 0;
/* 1962 */ }
/* 1963 */
/* 1964 */ /* Dual Category Posts */
/* 1965 */ .widget.widget_hitmag_dual_category_posts {
/* 1966 */   margin-bottom: 35px;
/* 1967 */ }
/* 1968 */
/* 1969 */ .widget_hitmag_dual_category_posts .hmb-entry-summary {
/* 1970 */   margin-bottom: 2em;
/* 1971 */   -ms-word-wrap: break-word;
/* 1972 */   word-wrap: break-word;
/* 1973 */ }
/* 1974 */
/* 1975 */ .hm-dualc-left {
/* 1976 */   margin-left: 0;
/* 1977 */   margin-right: 5.306122449%;
/* 1978 */   margin-bottom: 25px;
/* 1979 */   width: 47.3469387755%;
/* 1980 */   float: left;
/* 1981 */ }
/* 1982 */ @media (max-width: 768px) {
/* 1983 */   .hm-dualc-left {
/* 1984 */     margin-right: 0;
/* 1985 */     margin-bottom: 40px;
/* 1986 */     width: 100%;
/* 1987 */     float: none;
/* 1988 */   }
/* 1989 */ }
/* 1990 */
/* 1991 */ .hm-dualc-right {
/* 1992 */   width: 47.3469387755%;
/* 1993 */   float: right;
/* 1994 */   margin-bottom: 25px;
/* 1995 */ }
/* 1996 */ @media (max-width: 768px) {
/* 1997 */   .hm-dualc-right {
/* 1998 */     width: 100%;
/* 1999 */     float: none;
/* 2000 */   }

/* style.css */

/* 2001 */ }
/* 2002 */
/* 2003 */ .hmbd-post img {
/* 2004 */   margin-bottom: 16px;
/* 2005 */   width: 100%;
/* 2006 */   vertical-align: middle;
/* 2007 */ }
/* 2008 */ .hmbd-post .cat-links {
/* 2009 */   margin: 0 0 0.455em 0;
/* 2010 */   font-size: 11px;
/* 2011 */   font-size: 0.6875rem;
/* 2012 */   font-weight: bold;
/* 2013 */   text-transform: uppercase;
/* 2014 */   line-height: 1.2;
/* 2015 */ }
/* 2016 */
/* 2017 */ /* Grid Posts Widget */
/* 2018 */ .widget.widget_hitmag_grid_category_posts {
/* 2019 */   margin-bottom: 20px;
/* 2020 */ }
/* 2021 */
/* 2022 */ .hitmag-grid-category-posts {
/* 2023 */   margin: 0 -10px;
/* 2024 */ }
/* 2025 */
/* 2026 */ .hmw-grid-post {
/* 2027 */   display: inline-block;
/* 2028 */   padding: 0 10px;
/* 2029 */   margin-bottom: 2em;
/* 2030 */   width: 33.3333333%;
/* 2031 */   box-sizing: border-box;
/* 2032 */   float: left;
/* 2033 */   min-height: 1px;
/* 2034 */   clear: none;
/* 2035 */ }
/* 2036 */ @media (max-width: 768px) {
/* 2037 */   .hmw-grid-post {
/* 2038 */     width: 100%;
/* 2039 */     margin-right: 0;
/* 2040 */   }
/* 2041 */ }
/* 2042 */ .hmw-grid-post:nth-of-type(3n + 1) {
/* 2043 */   clear: both;
/* 2044 */ }
/* 2045 */ .hmw-grid-post img {
/* 2046 */   width: 100%;
/* 2047 */   vertical-align: middle;
/* 2048 */ }
/* 2049 */ .hmw-grid-post .post-title {
/* 2050 */   font-size: 17px;

/* style.css */

/* 2051 */   font-size: 1.0625rem;
/* 2052 */   margin: 0 0 0.5em 0;
/* 2053 */ }
/* 2054 */ .hmw-grid-post .post-title a {
/* 2055 */   color: #222;
/* 2056 */ }
/* 2057 */ .hmw-grid-post .post-title a:hover {
/* 2058 */   color: #e74c3c;
/* 2059 */ }
/* 2060 */
/* 2061 */ .hm-grid-thumb {
/* 2062 */   margin-bottom: 17px;
/* 2063 */ }
/* 2064 */
/* 2065 */ /* Tab Widget */
/* 2066 */ ul.hm-tab-nav {
/* 2067 */   overflow: hidden;
/* 2068 */   margin: 0 0 25px 0;
/* 2069 */   background: #ECF0F1;
/* 2070 */   list-style: none;
/* 2071 */   padding: 0;
/* 2072 */ }
/* 2073 */
/* 2074 */ li.hm-tab {
/* 2075 */   float: left;
/* 2076 */   padding: 0 !important;
/* 2077 */ }
/* 2078 */
/* 2079 */ .hm-tabs-wdt .hm-tab-anchor {
/* 2080 */   font-size: 15px;
/* 2081 */   padding: 10px 20px;
/* 2082 */   line-height: 40px;
/* 2083 */   display: inline-block;
/* 2084 */   font-family: "Ubuntu", sans-serif;
/* 2085 */   font-weight: bold;
/* 2086 */   line-height: 1.3;
/* 2087 */   text-transform: uppercase;
/* 2088 */   color: #333;
/* 2089 */ }
/* 2090 */ .hm-tabs-wdt .hm-tab-anchor:focus {
/* 2091 */   outline: none;
/* 2092 */ }
/* 2093 */ .hm-tabs-wdt .hm-tab-anchor:hover {
/* 2094 */   opacity: 0.9;
/* 2095 */ }
/* 2096 */ @media (max-width: 1199px) {
/* 2097 */   .hm-tabs-wdt .hm-tab-anchor {
/* 2098 */     padding: 10px 15px;
/* 2099 */     font-size: 14px;
/* 2100 */   }

/* style.css */

/* 2101 */ }
/* 2102 */ .hm-tabs-wdt .ui-state-active {
/* 2103 */   border-bottom: 2px solid #e74c3c;
/* 2104 */   outline: 0;
/* 2105 */ }
/* 2106 */ .hm-tabs-wdt #hitmag-comments,
/* 2107 */ .hm-tabs-wdt #hitmag-tags {
/* 2108 */   display: none;
/* 2109 */ }
/* 2110 */
/* 2111 */ .hmw-comment {
/* 2112 */   overflow: hidden;
/* 2113 */   margin: 0 0 1em;
/* 2114 */ }
/* 2115 */
/* 2116 */ .hmw-comment-author,
/* 2117 */ .hitmag_comment_post {
/* 2118 */   font-weight: bold;
/* 2119 */ }
/* 2120 */
/* 2121 */ .hmw-comment {
/* 2122 */   font-size: 14px;
/* 2123 */   margin-top: 5px;
/* 2124 */ }
/* 2125 */
/* 2126 */ .hmw_avatar {
/* 2127 */   float: left;
/* 2128 */   margin: 0 1em 0 0;
/* 2129 */ }
/* 2130 */ .hmw_avatar img {
/* 2131 */   height: 50px;
/* 2132 */   width: 50px;
/* 2133 */   border-radius: 50%;
/* 2134 */ }
/* 2135 */
/* 2136 */ .hmw-comm-content {
/* 2137 */   overflow: hidden;
/* 2138 */ }
/* 2139 */
/* 2140 */ /* Tag Cloud Widget */
/* 2141 */ #hitmag-tags a,
/* 2142 */ .widget_tag_cloud .tagcloud a {
/* 2143 */   display: block;
/* 2144 */   float: left;
/* 2145 */   padding: 4px 10px;
/* 2146 */   font-weight: bold;
/* 2147 */   background: #e74c3c;
/* 2148 */   color: #fff;
/* 2149 */   margin: 0 1px 1px 0;
/* 2150 */   font-size: 13px;

/* style.css */

/* 2151 */ }
/* 2152 */
/* 2153 */ #hitmag-tags a:hover,
/* 2154 */ .widget_tag_cloud .tagcloud a:hover {
/* 2155 */   background: #222;
/* 2156 */ }
/* 2157 */
/* 2158 */ /* Ready Magazine Widgets for other sidebars. */
/* 2159 */ #secondary .hmb-post,
/* 2160 */ .footer-widget-area .hmb-post {
/* 2161 */   margin-left: 0;
/* 2162 */   margin-right: 0;
/* 2163 */   width: 100%;
/* 2164 */ }
/* 2165 */ #secondary .hms-posts,
/* 2166 */ .footer-widget-area .hms-posts {
/* 2167 */   margin-left: 0;
/* 2168 */   margin-right: 0;
/* 2169 */   width: 100%;
/* 2170 */ }
/* 2171 */ #secondary .hm-dualc-left,
/* 2172 */ #secondary .hm-dualc-right,
/* 2173 */ .footer-widget-area .hm-dualc-left,
/* 2174 */ .footer-widget-area .hm-dualc-right {
/* 2175 */   margin-left: 0;
/* 2176 */   margin-right: 0;
/* 2177 */   width: 100%;
/* 2178 */   float: none;
/* 2179 */ }
/* 2180 */ #secondary .hmw-grid-post,
/* 2181 */ .footer-widget-area .hmw-grid-post {
/* 2182 */   display: block;
/* 2183 */   width: 100%;
/* 2184 */ }
/* 2185 */ #secondary a.hm-viewall,
/* 2186 */ .footer-widget-area a.hm-viewall {
/* 2187 */   color: #ffffff;
/* 2188 */ }
/* 2189 */ #secondary a.hm-viewall:hover,
/* 2190 */ .footer-widget-area a.hm-viewall:hover {
/* 2191 */   color: #ffffff;
/* 2192 */ }
/* 2193 */ #secondary .widget_categories select,
/* 2194 */ #secondary .widget_archive select,
/* 2195 */ .footer-widget-area .widget_categories select,
/* 2196 */ .footer-widget-area .widget_archive select {
/* 2197 */   width: 100%;
/* 2198 */ }
/* 2199 */
/* 2200 */ .footer-widget-area .hmw-grid-post .post-title a,

/* style.css */

/* 2201 */ .footer-widget-area .hmb-entry-title a,
/* 2202 */ .footer-widget-area .hms-title a {
/* 2203 */   color: #eeeeee;
/* 2204 */ }
/* 2205 */ .footer-widget-area .hmw-grid-post .post-title a:hover,
/* 2206 */ .footer-widget-area .hmb-entry-title a:hover,
/* 2207 */ .footer-widget-area .hms-title a:hover {
/* 2208 */   color: #e74c3c;
/* 2209 */ }
/* 2210 */ .footer-widget-area ul.hm-tab-nav {
/* 2211 */   background: #2b2b2b;
/* 2212 */ }
/* 2213 */ .footer-widget-area .hm-tabs-wdt .hm-tab-anchor {
/* 2214 */   color: #eee;
/* 2215 */ }
/* 2216 */
/* 2217 */ .widget_categories select,
/* 2218 */ .widget_archive select {
/* 2219 */   display: block;
/* 2220 */   padding: 8px;
/* 2221 */ }
/* 2222 */
/* 2223 */ #wp-calendar th, #wp-calendar td {
/* 2224 */   padding: 8px;
/* 2225 */   text-align: center;
/* 2226 */ }
/* 2227 */
/* 2228 */ /*--------------------------------------------------------------
/* 2229 *| # Content
/* 2230 *| --------------------------------------------------------------*/
/* 2231 */ /*--------------------------------------------------------------
/* 2232 *| ## Layout
/* 2233 *| --------------------------------------------------------------*/
/* 2234 */ .site-content {
/* 2235 */   padding-bottom: 60px;
/* 2236 */ }
/* 2237 */
/* 2238 */ .hitmag-full-width .hitmag-wrapper {
/* 2239 */   max-width: 100%;
/* 2240 */   margin-top: 0;
/* 2241 */ }
/* 2242 */
/* 2243 */ .hitmag-wrapper {
/* 2244 */   background: #ffffff;
/* 2245 */   margin: 0 auto;
/* 2246 */   box-shadow: 0 0 2px #bbb;
/* 2247 */ }
/* 2248 */ @media (min-width: 768px) {
/* 2249 */   .hitmag-wrapper {
/* 2250 */     max-width: 760px;

/* style.css */

/* 2251 */   }
/* 2252 */ }
/* 2253 */ @media (min-width: 992px) {
/* 2254 */   .hitmag-wrapper {
/* 2255 */     max-width: 990px;
/* 2256 */     margin-top: 30px;
/* 2257 */   }
/* 2258 */ }
/* 2259 */ @media (min-width: 1200px) {
/* 2260 */   .hitmag-wrapper {
/* 2261 */     max-width: 1200px;
/* 2262 */   }
/* 2263 */ }
/* 2264 */
/* 2265 */ .hm-container {
/* 2266 */   margin: 0 auto;
/* 2267 */   padding: 0 25px;
/* 2268 */   position: relative;
/* 2269 */ }
/* 2270 */ @media (min-width: 768px) {
/* 2271 */   .hm-container {
/* 2272 */     max-width: 760px;
/* 2273 */     padding: 0 30px;
/* 2274 */   }
/* 2275 */ }
/* 2276 */ @media (min-width: 992px) {
/* 2277 */   .hm-container {
/* 2278 */     max-width: 990px;
/* 2279 */     padding: 0 40px;
/* 2280 */   }
/* 2281 */ }
/* 2282 */ @media (min-width: 1200px) {
/* 2283 */   .hm-container {
/* 2284 */     max-width: 1200px;
/* 2285 */   }
/* 2286 */ }
/* 2287 */
/* 2288 */ #primary.content-area {
/* 2289 */   float: left;
/* 2290 */   width: 65.625%;
/* 2291 */ }
/* 2292 */ @media (max-width: 992px) {
/* 2293 */   #primary.content-area {
/* 2294 */     width: 100%;
/* 2295 */     float: none;
/* 2296 */   }
/* 2297 */ }
/* 2298 */
/* 2299 */ #secondary.widget-area {
/* 2300 */   float: right;

/* style.css */

/* 2301 */   width: 30.8%;
/* 2302 */ }
/* 2303 */ @media (max-width: 992px) {
/* 2304 */   #secondary.widget-area {
/* 2305 */     max-width: initial;
/* 2306 */     width: 100%;
/* 2307 */     float: none;
/* 2308 */   }
/* 2309 */ }
/* 2310 */
/* 2311 */ .th-left-sidebar #primary.content-area {
/* 2312 */   float: right;
/* 2313 */ }
/* 2314 */ .th-left-sidebar #secondary.widget-area {
/* 2315 */   float: left;
/* 2316 */ }
/* 2317 */
/* 2318 */ .th-no-sidebar #primary.content-area {
/* 2319 */   width: 100%;
/* 2320 */   max-width: 1120px;
/* 2321 */ }
/* 2322 */ .th-no-sidebar #secondary.widget-area {
/* 2323 */   display: none;
/* 2324 */ }
/* 2325 */
/* 2326 */ .th-content-centered #primary.content-area {
/* 2327 */   float: none;
/* 2328 */   margin: 0 auto;
/* 2329 */ }
/* 2330 */ .th-content-centered #secondary.widget-area {
/* 2331 */   display: none;
/* 2332 */ }
/* 2333 */
/* 2334 */ .posts-wrap {
/* 2335 */   position: relative;
/* 2336 */ }
/* 2337 */ .posts-wrap::after {
/* 2338 */   content: "";
/* 2339 */   clear: both;
/* 2340 */   display: table;
/* 2341 */ }
/* 2342 */
/* 2343 */ .th-grid-2 .hitmag-post {
/* 2344 */   display: inline-block;
/* 2345 */   margin-right: 5.306122449%;
/* 2346 */   margin-left: 0;
/* 2347 */   width: 47.3469387755%;
/* 2348 */   vertical-align: top;
/* 2349 */   position: relative;
/* 2350 */   float: left;

/* style.css */

/* 2351 */ }
/* 2352 */ @media (max-width: 768px) {
/* 2353 */   .th-grid-2 .hitmag-post {
/* 2354 */     width: 100%;
/* 2355 */     margin-left: 0;
/* 2356 */     margin-right: 0;
/* 2357 */     float: none;
/* 2358 */   }
/* 2359 */ }
/* 2360 */ .th-grid-2 .hitmag-post:nth-of-type(2n) {
/* 2361 */   margin-right: 0;
/* 2362 */ }
/* 2363 */
/* 2364 */ .th-no-sidebar .th-grid-2 .hitmag-post {
/* 2365 */   margin-right: 3.571428%;
/* 2366 */   width: 48.21428571%;
/* 2367 */ }
/* 2368 */ @media (max-width: 768px) {
/* 2369 */   .th-no-sidebar .th-grid-2 .hitmag-post {
/* 2370 */     width: 100%;
/* 2371 */     margin-left: 0;
/* 2372 */     margin-right: 0;
/* 2373 */     float: none;
/* 2374 */   }
/* 2375 */ }
/* 2376 */ .th-no-sidebar .th-grid-2 .hitmag-post:nth-of-type(2n) {
/* 2377 */   margin-right: 0;
/* 2378 */ }
/* 2379 */
/* 2380 */ .th-grid-3 {
/* 2381 */   margin: 0 -15px;
/* 2382 */ }
/* 2383 */ .th-grid-3 .hitmag-post {
/* 2384 */   padding: 0 15px;
/* 2385 */   width: 33.33333333%;
/* 2386 */   box-sizing: border-box;
/* 2387 */   float: left;
/* 2388 */   min-height: 1px;
/* 2389 */   clear: none;
/* 2390 */ }
/* 2391 */ @media (max-width: 768px) {
/* 2392 */   .th-grid-3 .hitmag-post {
/* 2393 */     width: 100%;
/* 2394 */     margin-left: 0;
/* 2395 */     margin-right: 0;
/* 2396 */     float: none;
/* 2397 */   }
/* 2398 */ }
/* 2399 */ .th-grid-3 .hitmag-post:nth-of-type(3n + 1) {
/* 2400 */   clear: both;

/* style.css */

/* 2401 */ }
/* 2402 */
/* 2403 */ .th-no-sidebar .th-grid-3 {
/* 2404 */   margin: 0 -19px;
/* 2405 */ }
/* 2406 */ .th-no-sidebar .th-grid-3 .hitmag-post {
/* 2407 */   padding: 0 19px;
/* 2408 */ }
/* 2409 */ .th-no-sidebar .th-grid-3 .hitmag-post:nth-of-type(3n + 1) {
/* 2410 */   clear: both;
/* 2411 */ }
/* 2412 */
/* 2413 */ .th-list-posts .hitmag-post .entry-summary {
/* 2414 */   margin-bottom: 1em;
/* 2415 */ }
/* 2416 */ .th-list-posts .hitmag-post {
/* 2417 */   overflow: hidden;
/* 2418 */   clear: both;
/* 2419 */ }
/* 2420 */ .th-list-posts .archive-thumb {
/* 2421 */   float: left;
/* 2422 */   margin: 0 30px 16px 0;
/* 2423 */ }
/* 2424 */ .th-list-posts .archive-thumb img {
/* 2425 */   max-width: 290px;
/* 2426 */ }
/* 2427 */ @media (max-width: 768px) {
/* 2428 */   .th-list-posts .archive-thumb {
/* 2429 */     width: 100%;
/* 2430 */     float: none;
/* 2431 */   }
/* 2432 */ }
/* 2433 */ .th-list-posts .archive-content {
/* 2434 */   overflow: hidden;
/* 2435 */ }
/* 2436 */ @media (max-width: 768px) {
/* 2437 */   .th-list-posts .archive-content {
/* 2438 */     width: 100%;
/* 2439 */     float: none;
/* 2440 */   }
/* 2441 */ }
/* 2442 */
/* 2443 */ .th-no-sidebar .th-list-posts .archive-thumb img {
/* 2444 */   max-width: 348px;
/* 2445 */ }
/* 2446 */
/* 2447 */ .site-footer {
/* 2448 */   background: #333;
/* 2449 */ }
/* 2450 */

/* style.css */

/* 2451 */ /*--------------------------------------------------------------
/* 2452 *| ## Posts and pages
/* 2453 *| --------------------------------------------------------------*/
/* 2454 */ .sticky {
/* 2455 */   display: block;
/* 2456 */ }
/* 2457 */
/* 2458 */ .hentry {
/* 2459 */   margin: 0 0 1.5em;
/* 2460 */ }
/* 2461 */
/* 2462 */ .updated:not(.published) {
/* 2463 */   display: none;
/* 2464 */ }
/* 2465 */
/* 2466 */ .single .byline,
/* 2467 */ .group-blog .byline {
/* 2468 */   display: inline;
/* 2469 */ }
/* 2470 */
/* 2471 */ .page-content,
/* 2472 */ .entry-content,
/* 2473 */ .entry-summary {
/* 2474 */   margin: 1.5em 0 0;
/* 2475 */   -ms-word-wrap: break-word;
/* 2476 */   word-wrap: break-word;
/* 2477 */ }
/* 2478 */
/* 2479 */ .page-links {
/* 2480 */   clear: both;
/* 2481 */   margin: 3.5em 0 1.5em;
/* 2482 */ }
/* 2483 */ .page-links .post-page-numbers {
/* 2484 */   border: 1px solid #ddd;
/* 2485 */   color: #404040 !important;
/* 2486 */   padding: 5px 14px;
/* 2487 */   font-weight: bold;
/* 2488 */   margin: 0 2px;
/* 2489 */   border-radius: 3px;
/* 2490 */   display: inline-block;
/* 2491 */   text-decoration: none !important;
/* 2492 */ }
/* 2493 */ .page-links .post-page-numbers:visited {
/* 2494 */   color: #000000;
/* 2495 */ }
/* 2496 */ .page-links .post-page-numbers:hover,
/* 2497 */ .page-links .post-page-numbers.current {
/* 2498 */   background-color: #e74c3c;
/* 2499 */   border: 1px solid #e74c3c;
/* 2500 */   color: #ffffff !important;

/* style.css */

/* 2501 */ }
/* 2502 */
/* 2503 */ html {
/* 2504 */   font-size: 16px;
/* 2505 */ }
/* 2506 */
/* 2507 */ body {
/* 2508 */   background: #ddd;
/* 2509 */ }
/* 2510 */
/* 2511 */ .hm-logo {
/* 2512 */   float: left;
/* 2513 */ }
/* 2514 */
/* 2515 */ .hm-site-title {
/* 2516 */   overflow: hidden;
/* 2517 */   display: inline-block;
/* 2518 */   margin-left: 15px;
/* 2519 */ }
/* 2520 */
/* 2521 */ .site-header {
/* 2522 */   margin: 0 0 40px;
/* 2523 */ }
/* 2524 */
/* 2525 */ .hm-top-bar {
/* 2526 */   height: 35px;
/* 2527 */   background: #ECF0F1;
/* 2528 */   border-bottom: 1px solid #ddd;
/* 2529 */   font-family: "Ubuntu", sans-serif;
/* 2530 */ }
/* 2531 */
/* 2532 */ .hm-date {
/* 2533 */   font-size: 12px;
/* 2534 */   font-size: 0.75rem;
/* 2535 */   line-height: 20px;
/* 2536 */   margin: 7.5px 15px 7.5px 0;
/* 2537 */   float: left;
/* 2538 */   font-weight: bold;
/* 2539 */ }
/* 2540 */
/* 2541 */ .header-main-area {
/* 2542 */   overflow: hidden;
/* 2543 */   clear: both;
/* 2544 */ }
/* 2545 */
/* 2546 */ .site-branding {
/* 2547 */   float: left;
/* 2548 */   max-width: 100%;
/* 2549 */   margin: 28px 0;
/* 2550 */ }

/* style.css */

/* 2551 */
/* 2552 */ .site-title {
/* 2553 */   font-family: "Open Sans", sans-serif;
/* 2554 */   font-size: 36px;
/* 2555 */   font-size: 2.25rem;
/* 2556 */   font-weight: bold;
/* 2557 */   margin: 0;
/* 2558 */   line-height: 1.3;
/* 2559 */ }
/* 2560 */ .site-title a {
/* 2561 */   color: #e74c3c;
/* 2562 */ }
/* 2563 */ .site-title a:hover {
/* 2564 */   color: #222222;
/* 2565 */ }
/* 2566 */
/* 2567 */ .site-description {
/* 2568 */   font-size: 14px;
/* 2569 */   font-size: 0.875rem;
/* 2570 */   margin: 2px 0 0 0;
/* 2571 */ }
/* 2572 */
/* 2573 */ .hm-header-image img {
/* 2574 */   float: left;
/* 2575 */   width: 100%;
/* 2576 */ }
/* 2577 */
/* 2578 */ .hitmag-post {
/* 2579 */   margin-bottom: 50px;
/* 2580 */ }
/* 2581 */ .hitmag-post .entry-title {
/* 2582 */   font-size: 21.008px;
/* 2583 */   font-size: 1.313rem;
/* 2584 */   font-weight: bold;
/* 2585 */   line-height: 1.3;
/* 2586 */   margin: 0 0 0.286em;
/* 2587 */   -ms-word-wrap: break-word;
/* 2588 */   word-wrap: break-word;
/* 2589 */ }
/* 2590 */ .hitmag-post .entry-title a {
/* 2591 */   color: #222222;
/* 2592 */   line-height: 1.3;
/* 2593 */ }
/* 2594 */ .hitmag-post .entry-title a:hover {
/* 2595 */   color: #e74c3c;
/* 2596 */ }
/* 2597 */ .hitmag-post .entry-meta {
/* 2598 */   color: #888;
/* 2599 */   font-size: 13px;
/* 2600 */   font-size: 0.8125rem;

/* style.css */

/* 2601 */ }
/* 2602 */ .hitmag-post .entry-meta a {
/* 2603 */   color: #888;
/* 2604 */ }
/* 2605 */ .hitmag-post .entry-meta a:hover {
/* 2606 */   color: #e74c3c;
/* 2607 */ }
/* 2608 */ .hitmag-post .entry-summary {
/* 2609 */   margin: 0.813em 0 0;
/* 2610 */ }
/* 2611 */ .hitmag-post .entry-summary p {
/* 2612 */   margin: 0 0 1.438em;
/* 2613 */ }
/* 2614 */ .hitmag-post .cat-links {
/* 2615 */   margin: 0 0 0.455em 0;
/* 2616 */   font-size: 11px;
/* 2617 */   font-size: 0.6875rem;
/* 2618 */   text-transform: uppercase;
/* 2619 */   line-height: 1.2;
/* 2620 */ }
/* 2621 */
/* 2622 */ @media all and (min-width: 768px) {
/* 2623 */   .th-large-posts .hitmag-post {
/* 2624 */     margin-bottom: 4.5em;
/* 2625 */   }
/* 2626 */   .th-large-posts .hitmag-post .entry-title {
/* 2627 */     font-size: 26px;
/* 2628 */     font-size: 1.625rem;
/* 2629 */     margin-top: 0.192em;
/* 2630 */   }
/* 2631 */ }
/* 2632 */ .meta-sep {
/* 2633 */   margin: 0 2px;
/* 2634 */ }
/* 2635 */
/* 2636 */ .archive-thumb {
/* 2637 */   margin: 0 0 16px;
/* 2638 */ }
/* 2639 */ .archive-thumb img {
/* 2640 */   vertical-align: middle;
/* 2641 */ }
/* 2642 */ @media (max-width: 768px) {
/* 2643 */   .archive-thumb img {
/* 2644 */     width: 100%;
/* 2645 */   }
/* 2646 */ }
/* 2647 */
/* 2648 */ .cat-links {
/* 2649 */   font-family: "Ubuntu", sans-serif;
/* 2650 */   color: #bbb;

/* style.css */

/* 2651 */ }
/* 2652 */ .cat-links a {
/* 2653 */   color: #e74c3c;
/* 2654 */   font-weight: bold;
/* 2655 */ }
/* 2656 */ .cat-links a:hover {
/* 2657 */   color: #222222;
/* 2658 */ }
/* 2659 */
/* 2660 */ .hitmag-single {
/* 2661 */   margin-bottom: 3em;
/* 2662 */   line-height: 1.6;
/* 2663 */ }
/* 2664 */ .hitmag-single .entry-header {
/* 2665 */   margin-bottom: 27px;
/* 2666 */ }
/* 2667 */ .hitmag-single .cat-links {
/* 2668 */   font-size: 11px;
/* 2669 */   font-size: 0.6875rem;
/* 2670 */   margin-bottom: 0.455em;
/* 2671 */   text-transform: uppercase;
/* 2672 */ }
/* 2673 */ .hitmag-single .entry-title {
/* 2674 */   font-size: 32px;
/* 2675 */   font-size: 2rem;
/* 2676 */   margin: 0 0 0.2em;
/* 2677 */   font-weight: bold;
/* 2678 */   color: #222;
/* 2679 */   line-height: 1.2;
/* 2680 */   -ms-word-wrap: break-word;
/* 2681 */   word-wrap: break-word;
/* 2682 */ }
/* 2683 */ .hitmag-single .entry-meta {
/* 2684 */   margin: 0 0 1.154em;
/* 2685 */   font-size: 13px;
/* 2686 */   font-size: 0.8125rem;
/* 2687 */   font-weight: bold;
/* 2688 */   color: #888888;
/* 2689 */ }
/* 2690 */ .hitmag-single .entry-meta a {
/* 2691 */   color: #888888;
/* 2692 */ }
/* 2693 */ .hitmag-single .entry-meta a:hover {
/* 2694 */   color: #e74c3c;
/* 2695 */ }
/* 2696 */ .hitmag-single .author a {
/* 2697 */   color: #444;
/* 2698 */ }
/* 2699 */ .hitmag-single .author a:hover {
/* 2700 */   color: #e74c3c;

/* style.css */

/* 2701 */ }
/* 2702 */
/* 2703 */ .hm-authorbox {
/* 2704 */   padding: 20px;
/* 2705 */   border: 1px solid #dddddd;
/* 2706 */   overflow: hidden;
/* 2707 */   margin-bottom: 3em;
/* 2708 */ }
/* 2709 */
/* 2710 */ .hm-related-posts {
/* 2711 */   margin-bottom: 3em;
/* 2712 */ }
/* 2713 */
/* 2714 */ .hm-author-img {
/* 2715 */   float: left;
/* 2716 */   margin: 0 25px 0 0;
/* 2717 */ }
/* 2718 */
/* 2719 */ .hm-author-content {
/* 2720 */   overflow: hidden;
/* 2721 */ }
/* 2722 */ .hm-author-content .author-name {
/* 2723 */   font-size: 17px;
/* 2724 */   font-size: 1.0625rem;
/* 2725 */   margin: 0 0 1em;
/* 2726 */ }
/* 2727 */ .hm-author-content .author-description {
/* 2728 */   margin: 0;
/* 2729 */ }
/* 2730 */ .hm-author-content .author-posts-link {
/* 2731 */   margin: 1em 0 0;
/* 2732 */   display: block;
/* 2733 */   color: #e74c3c;
/* 2734 */   font-style: italic;
/* 2735 */ }
/* 2736 */ .hm-author-content .author-posts-link:hover {
/* 2737 */   color: #222;
/* 2738 */ }
/* 2739 */
/* 2740 */ .hm-tags-links {
/* 2741 */   text-transform: uppercase;
/* 2742 */   font-weight: bold;
/* 2743 */   font-size: 12px;
/* 2744 */   font-size: 0.75rem;
/* 2745 */   margin: 20px 0;
/* 2746 */   display: block;
/* 2747 */ }
/* 2748 */ .hm-tags-links a {
/* 2749 */   line-height: 1.5;
/* 2750 */   padding: 0 5px;

/* style.css */

/* 2751 */   margin-right: 1px;
/* 2752 */   background: #222;
/* 2753 */   color: #fff;
/* 2754 */   display: inline-block;
/* 2755 */   text-transform: uppercase;
/* 2756 */   font-weight: bold;
/* 2757 */   font-size: 12px;
/* 2758 */   font-size: 0.75rem;
/* 2759 */   border-radius: 2px;
/* 2760 */ }
/* 2761 */ .hm-tags-links a:hover {
/* 2762 */   background: #e74c3c;
/* 2763 */   color: #fff;
/* 2764 */ }
/* 2765 */
/* 2766 */ .hm-tagged {
/* 2767 */   line-height: 1.5;
/* 2768 */   padding: 0 5px;
/* 2769 */   margin-right: 1px;
/* 2770 */   background: #e74c3c;
/* 2771 */   color: #fff;
/* 2772 */   display: inline-block;
/* 2773 */   text-transform: uppercase;
/* 2774 */   font-weight: bold;
/* 2775 */   font-size: 12px;
/* 2776 */   font-size: 0.75rem;
/* 2777 */   border-radius: 2px;
/* 2778 */ }
/* 2779 */
/* 2780 */ .hm-edit-link {
/* 2781 */   display: block;
/* 2782 */   font-weight: bold;
/* 2783 */   text-transform: uppercase;
/* 2784 */   margin-top: 1.5em;
/* 2785 */ }
/* 2786 */ .hm-edit-link a.post-edit-link {
/* 2787 */   padding: 5px 10px;
/* 2788 */   background: #e74c3c;
/* 2789 */   color: #fff;
/* 2790 */   border-radius: 3px;
/* 2791 */   font-size: 12px;
/* 2792 */   font-size: 0.75rem;
/* 2793 */ }
/* 2794 */ .hm-edit-link a.post-edit-link:before {
/* 2795 */   content: "\f044";
/* 2796 */   font-family: "Font Awesome 6 Free";
/* 2797 */   font-weight: 900;
/* 2798 */   display: inline-block;
/* 2799 */   text-rendering: auto;
/* 2800 */   -webkit-font-smoothing: antialiased;

/* style.css */

/* 2801 */   font-size: 12px;
/* 2802 */   margin: 1px 0.5em 0 0;
/* 2803 */ }
/* 2804 */ .hm-edit-link a.post-edit-link:hover {
/* 2805 */   color: #fff;
/* 2806 */   background: #222;
/* 2807 */ }
/* 2808 */
/* 2809 */ .hitmag-page .entry-title {
/* 2810 */   margin: 0 0 1em 0;
/* 2811 */   font-size: 34px;
/* 2812 */   font-size: 2.125rem;
/* 2813 */   -ms-word-wrap: break-word;
/* 2814 */   word-wrap: break-word;
/* 2815 */ }
/* 2816 */
/* 2817 */ .arc-page-title {
/* 2818 */   font-size: 18px;
/* 2819 */   font-size: 1.125rem;
/* 2820 */   padding: 2px 0;
/* 2821 */   border-bottom: 2px solid #e74c3c;
/* 2822 */   font-family: "Ubuntu", sans-serif;
/* 2823 */   font-weight: bold;
/* 2824 */   line-height: 1.3;
/* 2825 */   text-transform: uppercase;
/* 2826 */   display: inline;
/* 2827 */ }
/* 2828 */
/* 2829 */ .srch-page-title {
/* 2830 */   font-size: 18px;
/* 2831 */   font-size: 1.125rem;
/* 2832 */   padding: 2px 0;
/* 2833 */   border-bottom: 2px solid #e74c3c;
/* 2834 */   font-family: "Ubuntu", sans-serif;
/* 2835 */   font-weight: bold;
/* 2836 */   line-height: 1.3;
/* 2837 */   text-transform: uppercase;
/* 2838 */   display: inline;
/* 2839 */ }
/* 2840 */
/* 2841 */ .archive-description {
/* 2842 */   margin-top: 0.625em;
/* 2843 */   font-style: italic;
/* 2844 */ }
/* 2845 */
/* 2846 */ .archive .page-header,
/* 2847 */ .search .page-header {
/* 2848 */   margin-bottom: 2.55em;
/* 2849 */ }
/* 2850 */ .archive .page-header p,

/* style.css */

/* 2851 */ .search .page-header p {
/* 2852 */   margin-bottom: 0;
/* 2853 */ }
/* 2854 */
/* 2855 */ .archive.category .page-header {
/* 2856 */   margin-bottom: 2.5em;
/* 2857 */ }
/* 2858 */
/* 2859 */ .no-results .page-title,
/* 2860 */ .error-404 .page-title {
/* 2861 */   margin: 0.25em 0 1em 0;
/* 2862 */   font-size: 34px;
/* 2863 */   font-size: 2.125rem;
/* 2864 */ }
/* 2865 */ .no-results .page-header,
/* 2866 */ .error-404 .page-header {
/* 2867 */   margin-bottom: 0;
/* 2868 */ }
/* 2869 */
/* 2870 */ /* Featured Slider */
/* 2871 */ .hitmag-featured-slider {
/* 2872 */   margin-bottom: 40px;
/* 2873 */ }
/* 2874 */
/* 2875 */ .hm-slider-container {
/* 2876 */   position: relative;
/* 2877 */   cursor: pointer;
/* 2878 */ }
/* 2879 */
/* 2880 */ .hm-slide-holder {
/* 2881 */   position: relative;
/* 2882 */ }
/* 2883 */
/* 2884 */ .hm-slide-image {
/* 2885 */   position: relative;
/* 2886 */   width: 100%;
/* 2887 */   padding-top: 48.9795918367%;
/* 2888 */ }
/* 2889 */ .hm-slide-image img {
/* 2890 */   width: 100%;
/* 2891 */   height: 100%;
/* 2892 */   -o-object-fit: cover;
/* 2893 */   object-fit: cover;
/* 2894 */   position: absolute;
/* 2895 */   top: 0;
/* 2896 */ }
/* 2897 */
/* 2898 */ .hm-slide-holder > .hm-slide-content {
/* 2899 */   position: absolute;
/* 2900 */   top: 0;

/* style.css */

/* 2901 */   left: 0;
/* 2902 */   right: 0;
/* 2903 */   bottom: 0;
/* 2904 */ }
/* 2905 */
/* 2906 */ .hm-slider-details {
/* 2907 */   position: absolute;
/* 2908 */   bottom: 0;
/* 2909 */   left: 0;
/* 2910 */   color: #fff;
/* 2911 */   padding: 30px;
/* 2912 */   width: 100%;
/* 2913 */   box-sizing: border-box;
/* 2914 */   background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.5) 100%);
/* 2915 */ }
/* 2916 */ .hm-slider-details a {
/* 2917 */   color: #fff;
/* 2918 */ }
/* 2919 */ .hm-slider-details a:hover {
/* 2920 */   color: #ccc;
/* 2921 */ }
/* 2922 */ .hm-slider-details .cat-links {
/* 2923 */   text-transform: uppercase;
/* 2924 */   font-size: 10px;
/* 2925 */   font-size: 0.625rem;
/* 2926 */   padding: 3px 8px;
/* 2927 */   background: #e74c3c;
/* 2928 */   margin: 0 0 5px;
/* 2929 */   display: inline-block;
/* 2930 */   color: #ffffff;
/* 2931 */   position: relative;
/* 2932 */   z-index: 2;
/* 2933 */ }
/* 2934 */ .hm-slider-details .cat-links a {
/* 2935 */   color: #fff;
/* 2936 */ }
/* 2937 */ .hm-slider-details .cat-links a:hover {
/* 2938 */   color: #ddd;
/* 2939 */ }
/* 2940 */ @media (max-width: 768px) {
/* 2941 */   .hm-slider-details .cat-links {
/* 2942 */     display: none;
/* 2943 */   }
/* 2944 */ }
/* 2945 */
/* 2946 */ .hm-slider-title {
/* 2947 */   text-shadow: 0 0 5px #222;
/* 2948 */   font-size: 16px;
/* 2949 */   font-size: 1rem;
/* 2950 */   margin: 2px 0 0;

/* style.css */

/* 2951 */   line-height: 1.3;
/* 2952 */ }
/* 2953 */ @media (min-width: 480px) {
/* 2954 */   .hm-slider-title {
/* 2955 */     font-size: 20px;
/* 2956 */     font-size: 1.25rem;
/* 2957 */   }
/* 2958 */ }
/* 2959 */ @media (min-width: 768px) {
/* 2960 */   .hm-slider-title {
/* 2961 */     font-size: 22px;
/* 2962 */     font-size: 1.375rem;
/* 2963 */   }
/* 2964 */ }
/* 2965 */ @media (min-width: 992px) {
/* 2966 */   .hm-slider-title {
/* 2967 */     font-size: 26px;
/* 2968 */     font-size: 1.625rem;
/* 2969 */   }
/* 2970 */ }
/* 2971 */
/* 2972 */ .slide-entry-meta {
/* 2973 */   color: #fff;
/* 2974 */   font-size: 13px;
/* 2975 */   font-size: 0.8125rem;
/* 2976 */   margin: 5px 0 0;
/* 2977 */   text-shadow: 0 0 2px #000;
/* 2978 */ }
/* 2979 */ .slide-entry-meta span {
/* 2980 */   position: relative;
/* 2981 */   z-index: 2;
/* 2982 */ }
/* 2983 */ .slide-entry-meta a {
/* 2984 */   color: #fff;
/* 2985 */ }
/* 2986 */ .slide-entry-meta a:hover {
/* 2987 */   color: #ccc;
/* 2988 */ }
/* 2989 */ @media (max-width: 768px) {
/* 2990 */   .slide-entry-meta {
/* 2991 */     display: none;
/* 2992 */   }
/* 2993 */ }
/* 2994 */
/* 2995 */ .hmwcsw {
/* 2996 */   position: absolute;
/* 2997 */   top: 0;
/* 2998 */   bottom: 0;
/* 2999 */   left: 0;
/* 3000 */   right: 0;

/* style.css */

/* 3001 */   z-index: 1;
/* 3002 */ }
/* 3003 */
/* 3004 */ .hm-swiper.hm-thumb-swiper {
/* 3005 */   background: #ddd;
/* 3006 */   padding: 10px;
/* 3007 */ }
/* 3008 */ .hm-swiper.hm-thumb-swiper .hm-swiper-slide {
/* 3009 */   max-width: 48%;
/* 3010 */   margin-right: 10px;
/* 3011 */ }
/* 3012 */ @media (min-width: 320px) {
/* 3013 */   .hm-swiper.hm-thumb-swiper .hm-swiper-slide {
/* 3014 */     max-width: 32%;
/* 3015 */   }
/* 3016 */ }
/* 3017 */ @media (min-width: 480px) {
/* 3018 */   .hm-swiper.hm-thumb-swiper .hm-swiper-slide {
/* 3019 */     max-width: 24%;
/* 3020 */   }
/* 3021 */ }
/* 3022 */ @media (min-width: 640px) {
/* 3023 */   .hm-swiper.hm-thumb-swiper .hm-swiper-slide {
/* 3024 */     max-width: 19%;
/* 3025 */   }
/* 3026 */ }
/* 3027 */ .hm-swiper.hm-thumb-swiper img {
/* 3028 */   width: 100%;
/* 3029 */   display: block;
/* 3030 */   opacity: 0.9;
/* 3031 */   cursor: pointer;
/* 3032 */   box-sizing: border-box;
/* 3033 */ }
/* 3034 */ .hm-swiper.hm-thumb-swiper img:hover {
/* 3035 */   opacity: 1;
/* 3036 */ }
/* 3037 */ .hm-swiper.hm-thumb-swiper .swiper-slide-thumb-active img {
/* 3038 */   opacity: 1;
/* 3039 */   cursor: default;
/* 3040 */   border: 2px solid #fff;
/* 3041 */   height: auto !important;
/* 3042 */ }
/* 3043 */
/* 3044 */ .hm-thumb-bg {
/* 3045 */   background: #000;
/* 3046 */ }
/* 3047 */
/* 3048 */ .hm-related-posts {
/* 3049 */   position: relative;
/* 3050 */   overflow: hidden;

/* style.css */

/* 3051 */   margin-bottom: 1.5em;
/* 3052 */ }
/* 3053 */
/* 3054 */ .hm-rel-post {
/* 3055 */   display: inline-block;
/* 3056 */   margin-right: 3.5%;
/* 3057 */   margin-left: 0;
/* 3058 */   margin-bottom: 2em;
/* 3059 */   width: 31%;
/* 3060 */   vertical-align: top;
/* 3061 */   position: relative;
/* 3062 */   float: left;
/* 3063 */ }
/* 3064 */ @media (max-width: 768px) {
/* 3065 */   .hm-rel-post {
/* 3066 */     width: 100%;
/* 3067 */     margin-right: 0;
/* 3068 */   }
/* 3069 */ }
/* 3070 */ .hm-rel-post img {
/* 3071 */   margin-bottom: 17px;
/* 3072 */   width: 100%;
/* 3073 */   vertical-align: middle;
/* 3074 */ }
/* 3075 */ .hm-rel-post .post-title {
/* 3076 */   font-size: 17px;
/* 3077 */   font-size: 1.0625rem;
/* 3078 */   margin: 0 0 0.5em 0;
/* 3079 */ }
/* 3080 */ .hm-rel-post .post-title a {
/* 3081 */   color: #222;
/* 3082 */ }
/* 3083 */ .hm-rel-post .post-title a:hover {
/* 3084 */   color: #e74c3c;
/* 3085 */ }
/* 3086 */
/* 3087 */ .hm-rel-post:nth-of-type(3n) {
/* 3088 */   margin-right: 0;
/* 3089 */ }
/* 3090 */
/* 3091 */ /* Share Icons */
/* 3092 */ .hitmag-social-sharing {
/* 3093 */   overflow: hidden;
/* 3094 */ }
/* 3095 */
/* 3096 */ .entry-header .hitmag-social-sharing {
/* 3097 */   margin-bottom: 2.3em;
/* 3098 */ }
/* 3099 */
/* 3100 */ .entry-footer .hitmag-social-sharing {

/* style.css */

/* 3101 */   margin-top: 1.5em;
/* 3102 */ }
/* 3103 */
/* 3104 */ .hm-share {
/* 3105 */   margin-right: 10px;
/* 3106 */   padding: 7px 13px;
/* 3107 */   color: #fff;
/* 3108 */   border-radius: 3px;
/* 3109 */   line-height: 15px;
/* 3110 */   display: inline-block;
/* 3111 */   font-size: 11px;
/* 3112 */   text-transform: uppercase;
/* 3113 */   font-weight: bold;
/* 3114 */ }
/* 3115 */ .hm-share:visited {
/* 3116 */   color: #fff;
/* 3117 */ }
/* 3118 */ .hm-share:hover {
/* 3119 */   color: #fff;
/* 3120 */   opacity: 0.8;
/* 3121 */ }
/* 3122 */
/* 3123 */ .hm-share-facebook {
/* 3124 */   background: #3b5998;
/* 3125 */ }
/* 3126 */
/* 3127 */ .hm-share-facebook:before {
/* 3128 */   content: "\f39e";
/* 3129 */   font-family: "Font Awesome 6 Brands";
/* 3130 */   font-weight: 400;
/* 3131 */   display: inline-block;
/* 3132 */   text-rendering: auto;
/* 3133 */   -webkit-font-smoothing: antialiased;
/* 3134 */   font-size: 11px;
/* 3135 */   margin: 0;
/* 3136 */ }
/* 3137 */
/* 3138 */ .hm-share-twitter {
/* 3139 */   background: #33ccff;
/* 3140 */ }
/* 3141 */
/* 3142 */ .hm-share-twitter:before {
/* 3143 */   content: "\e61b";
/* 3144 */   font-family: "Font Awesome 6 Brands";
/* 3145 */   font-weight: 400;
/* 3146 */   display: inline-block;
/* 3147 */   text-rendering: auto;
/* 3148 */   -webkit-font-smoothing: antialiased;
/* 3149 */   font-size: 11px;
/* 3150 */   margin: 0;

/* style.css */

/* 3151 */ }
/* 3152 */
/* 3153 */ .hm-share-facebook:before,
/* 3154 */ .hm-share-twitter:before,
/* 3155 */ .hm-share-googleplus:before {
/* 3156 */   line-height: 15px;
/* 3157 */   border-right: 1px solid rgba(255, 255, 255, 0.3);
/* 3158 */   margin-right: 0.6em;
/* 3159 */   padding-right: 0.6em;
/* 3160 */ }
/* 3161 */
/* 3162 */ /**
/* 3163 *|  * Block Styles
/* 3164 *|  */
/* 3165 */ ul.wp-block-gallery,
/* 3166 */ ol.wp-block-gallery {
/* 3167 */   margin: 0;
/* 3168 */   padding-left: 0;
/* 3169 */ }
/* 3170 */
/* 3171 */ .wp-block-pullquote {
/* 3172 */   border-top: none;
/* 3173 */   border-bottom: none;
/* 3174 */   color: inherit;
/* 3175 */   padding: 0;
/* 3176 */   margin-left: 0;
/* 3177 */   margin-right: 0;
/* 3178 */   text-align: none;
/* 3179 */ }
/* 3180 */
/* 3181 */ .wp-block-pullquote.alignleft {
/* 3182 */   margin-right: 25px;
/* 3183 */ }
/* 3184 */
/* 3185 */ .wp-block-pullquote.alignright {
/* 3186 */   margin-left: 25px;
/* 3187 */ }
/* 3188 */
/* 3189 */ .wp-block-separator {
/* 3190 */   background-color: #cccccc;
/* 3191 */   border: 0;
/* 3192 */   height: 1px;
/* 3193 */   margin-bottom: 1.5em;
/* 3194 */ }
/* 3195 */
/* 3196 */ .wp-block-table td,
/* 3197 */ .wp-block-table th {
/* 3198 */   border: 1px solid #ededed;
/* 3199 */   padding: 8px 15px;
/* 3200 */ }

/* style.css */

/* 3201 */
/* 3202 */ /*--------------------------------------------------------------
/* 3203 *| ## Comments
/* 3204 *| --------------------------------------------------------------*/
/* 3205 */ .comment-content a {
/* 3206 */   word-wrap: break-word;
/* 3207 */ }
/* 3208 */
/* 3209 */ .comment-content p {
/* 3210 */   margin-top: 0;
/* 3211 */ }
/* 3212 */
/* 3213 */ .bypostauthor {
/* 3214 */   display: block;
/* 3215 */ }
/* 3216 */
/* 3217 */ .comment-list {
/* 3218 */   margin: 0 0 1.5em 0;
/* 3219 */   list-style: none;
/* 3220 */   padding: 0;
/* 3221 */ }
/* 3222 */
/* 3223 */ .says, .screen-reader-text {
/* 3224 */   clip: rect(1px, 1px, 1px, 1px);
/* 3225 */   height: 1px;
/* 3226 */   overflow: hidden;
/* 3227 */   position: absolute !important;
/* 3228 */   width: 1px;
/* 3229 */   word-wrap: normal !important;
/* 3230 */ }
/* 3231 */
/* 3232 */ .comment-list + .comment-respond,
/* 3233 */ .comment-navigation + .comment-respond {
/* 3234 */   padding-top: 1.75em;
/* 3235 */ }
/* 3236 */
/* 3237 */ .comments-title,
/* 3238 */ .comment-reply-title {
/* 3239 */   font-size: 23px;
/* 3240 */   font-size: 1.4375rem;
/* 3241 */   font-weight: 700;
/* 3242 */   line-height: 1.3125;
/* 3243 */   padding-top: 1.304em;
/* 3244 */ }
/* 3245 */
/* 3246 */ .comments-title {
/* 3247 */   margin-bottom: 1.304em;
/* 3248 */ }
/* 3249 */
/* 3250 */ .comment-list {

/* style.css */

/* 3251 */   list-style: none;
/* 3252 */   margin: 0;
/* 3253 */ }
/* 3254 */
/* 3255 */ .comment-list article,
/* 3256 */ .comment-list .pingback,
/* 3257 */ .comment-list .trackback {
/* 3258 */   border-top: 1px solid #dddddd;
/* 3259 */   padding: 30px 30px 30px 75px;
/* 3260 */   position: relative;
/* 3261 */ }
/* 3262 */
/* 3263 */ .comment-list .children {
/* 3264 */   list-style: none;
/* 3265 */   margin: 0;
/* 3266 */ }
/* 3267 */
/* 3268 */ .comment-list .children > li {
/* 3269 */   padding-left: 0.875em;
/* 3270 */ }
/* 3271 */
/* 3272 */ .comment-author {
/* 3273 */   color: #1a1a1a;
/* 3274 */   margin-bottom: 0.4375em;
/* 3275 */   line-height: 1;
/* 3276 */   display: inline;
/* 3277 */ }
/* 3278 */ .comment-author a {
/* 3279 */   color: #e74c3c;
/* 3280 */ }
/* 3281 */ .comment-author a:hover {
/* 3282 */   color: #222;
/* 3283 */ }
/* 3284 */
/* 3285 */ .comment-author .avatar {
/* 3286 */   height: 50px;
/* 3287 */   position: absolute;
/* 3288 */   width: 50px;
/* 3289 */   left: 0;
/* 3290 */   top: 22px;
/* 3291 */   border-radius: 50%;
/* 3292 */ }
/* 3293 */
/* 3294 */ .comment-metadata,
/* 3295 */ .pingback .edit-link {
/* 3296 */   color: #888888;
/* 3297 */   font-size: 12px;
/* 3298 */   font-size: 0.75rem;
/* 3299 */   line-height: 1.6153846154;
/* 3300 */ }

/* style.css */

/* 3301 */
/* 3302 */ footer.comment-meta {
/* 3303 */   margin-bottom: 25px;
/* 3304 */ }
/* 3305 */
/* 3306 */ .comment-metadata {
/* 3307 */   margin-left: 5px;
/* 3308 */   display: inline;
/* 3309 */ }
/* 3310 */
/* 3311 */ .comment-metadata a,
/* 3312 */ .pingback .comment-edit-link {
/* 3313 */   color: #888888;
/* 3314 */ }
/* 3315 */
/* 3316 */ .comment-metadata a:hover,
/* 3317 */ .comment-metadata a:focus,
/* 3318 */ .pingback .comment-edit-link:hover,
/* 3319 */ .pingback .comment-edit-link:focus {
/* 3320 */   color: #e74c3c;
/* 3321 */ }
/* 3322 */
/* 3323 */ .comment-metadata .edit-link,
/* 3324 */ .pingback .edit-link {
/* 3325 */   display: inline-block;
/* 3326 */ }
/* 3327 */
/* 3328 */ .comment-content ul,
/* 3329 */ .comment-content ol {
/* 3330 */   margin: 0 0 1.5em 1.25em;
/* 3331 */ }
/* 3332 */
/* 3333 */ .comment-content li > ul,
/* 3334 */ .comment-content li > ol {
/* 3335 */   margin-bottom: 0;
/* 3336 */ }
/* 3337 */
/* 3338 */ .comment-reply-link {
/* 3339 */   border-radius: 2px;
/* 3340 */   color: #fff;
/* 3341 */   display: inline-block;
/* 3342 */   font-size: 12px;
/* 3343 */   line-height: 1;
/* 3344 */   margin-top: 1.25em;
/* 3345 */   padding: 0.417em 0.833em;
/* 3346 */   font-weight: bold;
/* 3347 */   background: #222;
/* 3348 */   text-transform: uppercase;
/* 3349 */ }
/* 3350 */

/* style.css */

/* 3351 */ .comment-reply-link:hover,
/* 3352 */ .comment-reply-link:focus {
/* 3353 */   background: #e74c3c;
/* 3354 */   color: #fff;
/* 3355 */   outline: 0;
/* 3356 */ }
/* 3357 */
/* 3358 */ .comment-form label {
/* 3359 */   display: block;
/* 3360 */   font-size: 13px;
/* 3361 */   font-size: 0.8125rem;
/* 3362 */   letter-spacing: 0.077em;
/* 3363 */   line-height: 1.5;
/* 3364 */   margin-bottom: 0.5em;
/* 3365 */   text-transform: uppercase;
/* 3366 */ }
/* 3367 */
/* 3368 */ .comment-list .comment-form {
/* 3369 */   padding-bottom: 1.75em;
/* 3370 */ }
/* 3371 */
/* 3372 */ .comment-notes,
/* 3373 */ .comment-awaiting-moderation,
/* 3374 */ .logged-in-as,
/* 3375 */ .form-allowed-tags {
/* 3376 */   font-size: 14px;
/* 3377 */   font-size: 0.875rem;
/* 3378 */   line-height: 1.6;
/* 3379 */   margin-bottom: 1.5em;
/* 3380 */ }
/* 3381 */
/* 3382 */ .no-comments {
/* 3383 */   border-top: 1px solid #dddddd;
/* 3384 */   font-weight: 700;
/* 3385 */   margin: 0;
/* 3386 */   padding-top: 1.75em;
/* 3387 */ }
/* 3388 */
/* 3389 */ .comment-navigation + .no-comments {
/* 3390 */   border-top: 0;
/* 3391 */   padding-top: 0;
/* 3392 */ }
/* 3393 */
/* 3394 */ .form-allowed-tags code {
/* 3395 */   font-family: Inconsolata, monospace;
/* 3396 */ }
/* 3397 */
/* 3398 */ .form-submit {
/* 3399 */   margin-bottom: 0;
/* 3400 */ }

/* style.css */

/* 3401 */
/* 3402 */ .required {
/* 3403 */   color: #e74c3c;
/* 3404 */ }
/* 3405 */
/* 3406 */ .comment-reply-title {
/* 3407 */   border-top: 1px solid #ddd;
/* 3408 */ }
/* 3409 */
/* 3410 */ .comment-reply-title small {
/* 3411 */   font-size: 100%;
/* 3412 */ }
/* 3413 */
/* 3414 */ .comment-reply-title small a {
/* 3415 */   border: 0;
/* 3416 */   float: right;
/* 3417 */   font-size: 0;
/* 3418 */ }
/* 3419 */
/* 3420 */ .comment-reply-title small a:hover,
/* 3421 */ .comment-reply-title small a:focus {
/* 3422 */   color: #1a1a1a;
/* 3423 */ }
/* 3424 */
/* 3425 */ .comment-reply-title small a:before {
/* 3426 */   content: "\f00d";
/* 3427 */   font-family: "Font Awesome 6 Free";
/* 3428 */   font-weight: 900;
/* 3429 */   display: inline-block;
/* 3430 */   text-rendering: auto;
/* 3431 */   -webkit-font-smoothing: antialiased;
/* 3432 */   font-size: 20px;
/* 3433 */   position: relative;
/* 3434 */   top: -5px;
/* 3435 */   color: #e74c3c;
/* 3436 */ }
/* 3437 */
/* 3438 */ /*--------------------------------------------------------------
/* 3439 *| # Infinite scroll
/* 3440 *| --------------------------------------------------------------*/
/* 3441 */ /* Globally hidden elements when Infinite Scroll is supported and in use. */
/* 3442 */ .infinite-scroll .posts-navigation,
/* 3443 */ .infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
/* 3444 */   display: none;
/* 3445 */ }
/* 3446 */
/* 3447 */ /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
/* 3448 */ .infinity-end.neverending .site-footer {
/* 3449 */   display: block;
/* 3450 */ }

/* style.css */

/* 3451 */
/* 3452 */ /*--------------------------------------------------------------
/* 3453 *| # Media
/* 3454 *| --------------------------------------------------------------*/
/* 3455 */ .page-content .wp-smiley,
/* 3456 */ .entry-content .wp-smiley,
/* 3457 */ .comment-content .wp-smiley {
/* 3458 */   border: none;
/* 3459 */   margin-bottom: 0;
/* 3460 */   margin-top: 0;
/* 3461 */   padding: 0;
/* 3462 */ }
/* 3463 */
/* 3464 */ /* Make sure embeds and iframes fit their containers. */
/* 3465 */ embed,
/* 3466 */ iframe,
/* 3467 */ object {
/* 3468 */   max-width: 100%;
/* 3469 */ }
/* 3470 */
/* 3471 */ /*--------------------------------------------------------------
/* 3472 *| ## Captions
/* 3473 *| --------------------------------------------------------------*/
/* 3474 */ .wp-caption {
/* 3475 */   margin-bottom: 1.5em;
/* 3476 */   max-width: 100%;
/* 3477 */ }
/* 3478 */ .wp-caption img[class*=wp-image-] {
/* 3479 */   display: block;
/* 3480 */   margin-left: auto;
/* 3481 */   margin-right: auto;
/* 3482 */ }
/* 3483 */ .wp-caption .wp-caption-text {
/* 3484 */   margin: 0.8075em 0;
/* 3485 */ }
/* 3486 */
/* 3487 */ .wp-caption-text {
/* 3488 */   text-align: center;
/* 3489 */ }
/* 3490 */
/* 3491 */ /*--------------------------------------------------------------
/* 3492 *| ## Galleries
/* 3493 *| --------------------------------------------------------------*/
/* 3494 */ .gallery {
/* 3495 */   margin-bottom: 1.5em;
/* 3496 */ }
/* 3497 */
/* 3498 */ .gallery-item {
/* 3499 */   display: inline-block;
/* 3500 */   text-align: center;

/* style.css */

/* 3501 */   vertical-align: top;
/* 3502 */   width: 100%;
/* 3503 */ }
/* 3504 */ .gallery-columns-2 .gallery-item {
/* 3505 */   max-width: 50%;
/* 3506 */ }
/* 3507 */ .gallery-columns-3 .gallery-item {
/* 3508 */   max-width: 33.33%;
/* 3509 */ }
/* 3510 */ .gallery-columns-4 .gallery-item {
/* 3511 */   max-width: 25%;
/* 3512 */ }
/* 3513 */ .gallery-columns-5 .gallery-item {
/* 3514 */   max-width: 20%;
/* 3515 */ }
/* 3516 */ .gallery-columns-6 .gallery-item {
/* 3517 */   max-width: 16.66%;
/* 3518 */ }
/* 3519 */ .gallery-columns-7 .gallery-item {
/* 3520 */   max-width: 14.28%;
/* 3521 */ }
/* 3522 */ .gallery-columns-8 .gallery-item {
/* 3523 */   max-width: 12.5%;
/* 3524 */ }
/* 3525 */ .gallery-columns-9 .gallery-item {
/* 3526 */   max-width: 11.11%;
/* 3527 */ }
/* 3528 */
/* 3529 */ .gallery-caption {
/* 3530 */   display: block;
/* 3531 */ }
/* 3532 */
/* 3533 */ /*--------------------------------------------------------------
/* 3534 *| # WooCommerce
/* 3535 *| --------------------------------------------------------------*/
/* 3536 */ .woocommerce .page-title {
/* 3537 */   margin: 10px 0;
/* 3538 */ }
/* 3539 */
/* 3540 */ .woocommerce ul.products li.product,
/* 3541 */ .woocommerce-page ul.products li.product {
/* 3542 */   text-align: center;
/* 3543 */ }
/* 3544 */
/* 3545 */ .woocommerce ul.products li.product .star-rating {
/* 3546 */   color: #eac600;
/* 3547 */ }
/* 3548 */
/* 3549 */ .woocommerce ul.products li.product h3 {
/* 3550 */   color: #222222;

/* style.css */

/* 3551 */   margin-bottom: 1em;
/* 3552 */ }
/* 3553 */
/* 3554 */ .woocommerce ul.products li.product h3:hover {
/* 3555 */   color: #e74c3c;
/* 3556 */ }
/* 3557 */
/* 3558 */ .woocommerce .products .star-rating {
/* 3559 */   margin-left: auto;
/* 3560 */   margin-right: auto;
/* 3561 */ }
/* 3562 */
/* 3563 */ .woocommerce .woocommerce-ordering {
/* 3564 */   margin: 0 0 30px;
/* 3565 */ }
/* 3566 */
/* 3567 */ .woocommerce .woocommerce-result-count {
/* 3568 */   margin: 5px 0 25px;
/* 3569 */ }
/* 3570 */
/* 3571 */ .woocommerce select {
/* 3572 */   padding: 8px;
/* 3573 */ }
/* 3574 */
/* 3575 */ .woocommerce-product-search {
/* 3576 */   display: block;
/* 3577 */   position: relative;
/* 3578 */   width: 100%;
/* 3579 */   margin: 0;
/* 3580 */   padding: 0;
/* 3581 */   overflow: hidden;
/* 3582 */   font-weight: bold;
/* 3583 */ }
/* 3584 */
/* 3585 */ .woocommerce-product-search .search-field {
/* 3586 */   display: inline-block;
/* 3587 */   margin: 0;
/* 3588 */   width: 100%;
/* 3589 */   height: 45px;
/* 3590 */   padding: 10px 80px 10px 10px;
/* 3591 */   box-sizing: border-box;
/* 3592 */   -webkit-appearance: none;
/* 3593 */   border-radius: 0;
/* 3594 */ }
/* 3595 */
/* 3596 */ .woocommerce-product-search input[type=submit]:hover {
/* 3597 */   background: #333333;
/* 3598 */ }
/* 3599 */
/* 3600 */ .woocommerce-product-search input[type=submit]:focus {

/* style.css */

/* 3601 */   outline: none;
/* 3602 */ }
/* 3603 */
/* 3604 */ .woocommerce-product-search input[type=submit] {
/* 3605 */   height: 45px;
/* 3606 */   position: absolute;
/* 3607 */   top: 0;
/* 3608 */   right: 0;
/* 3609 */   border: none;
/* 3610 */   padding: 10px 15px;
/* 3611 */   cursor: pointer;
/* 3612 */   transition: all 0.2s ease;
/* 3613 */   font-size: 13px;
/* 3614 */   text-transform: uppercase;
/* 3615 */   font-weight: bold;
/* 3616 */   background: #e74c3c;
/* 3617 */   color: #fff;
/* 3618 */ }
/* 3619 */
/* 3620 */ .woocommerce #respond input#submit,
/* 3621 */ .woocommerce a.button,
/* 3622 */ .woocommerce button.button,
/* 3623 */ .woocommerce input.button {
/* 3624 */   border: none;
/* 3625 */   border-radius: 3px;
/* 3626 */   font-weight: bold;
/* 3627 */   color: #ffffff;
/* 3628 */   background: #e74c3c;
/* 3629 */   font-size: 11px;
/* 3630 */   font-weight: bold;
/* 3631 */   line-height: 1;
/* 3632 */   padding: 11px 15px;
/* 3633 */   text-transform: uppercase;
/* 3634 */ }
/* 3635 */
/* 3636 */ .woocommerce #respond input#submit:hover,
/* 3637 */ .woocommerce a.button:hover,
/* 3638 */ .woocommerce button.button:hover,
/* 3639 */ .woocommerce input.button:hover {
/* 3640 */   background: #222222;
/* 3641 */   color: #ffffff;
/* 3642 */ }
/* 3643 */
/* 3644 */ .woocommerce ul.cart_list li,
/* 3645 */ .woocommerce ul.product_list_widget li {
/* 3646 */   padding: 10px 0;
/* 3647 */ }
/* 3648 */
/* 3649 */ .woocommerce .widget_shopping_cart .cart_list li,
/* 3650 */ .woocommerce.widget_shopping_cart .cart_list li {

/* style.css */

/* 3651 */   margin-top: 10px;
/* 3652 */ }
/* 3653 */
/* 3654 */ .woocommerce ul.cart_list li img,
/* 3655 */ .woocommerce ul.product_list_widget li img {
/* 3656 */   margin-top: 2px;
/* 3657 */   width: 50px;
/* 3658 */ }
/* 3659 */
/* 3660 */ .woocommerce .widget_shopping_cart .total,
/* 3661 */ .woocommerce.widget_shopping_cart .total {
/* 3662 */   padding: 10px 0 0;
/* 3663 */ }
/* 3664 */
/* 3665 */ /* WC WIDGETS */
/* 3666 */ /* Layered Nav */
/* 3667 */ .woocommerce-pagination {
/* 3668 */   margin-top: 20px;
/* 3669 */   margin-bottom: 60px;
/* 3670 */ }
/* 3671 */
/* 3672 */ .woocommerce .widget_layered_nav ul li {
/* 3673 */   padding: 8px 0;
/* 3674 */ }
/* 3675 */
/* 3676 */ /* Average Rating Widget */
/* 3677 */ .woocommerce .widget_rating_filter ul li {
/* 3678 */   padding: 8px 0;
/* 3679 */ }
/* 3680 */
/* 3681 */ /* Woocommerce Pagination */
/* 3682 */ .woocommerce nav.woocommerce-pagination ul {
/* 3683 */   border: none;
/* 3684 */ }
/* 3685 */
/* 3686 */ .woocommerce nav.woocommerce-pagination ul li a,
/* 3687 */ .woocommerce nav.woocommerce-pagination ul li span {
/* 3688 */   padding: 10px 15px;
/* 3689 */   margin: 0 2px;
/* 3690 */   font-weight: bold;
/* 3691 */   color: #ffffff;
/* 3692 */ }
/* 3693 */
/* 3694 */ .woocommerce nav.woocommerce-pagination ul li a {
/* 3695 */   background: #383732;
/* 3696 */ }
/* 3697 */
/* 3698 */ .woocommerce nav.woocommerce-pagination ul li a:focus {
/* 3699 */   background: #e74c3c;
/* 3700 */   color: #ffffff;

/* style.css */

/* 3701 */ }
/* 3702 */
/* 3703 */ .woocommerce nav.woocommerce-pagination ul li a:hover {
/* 3704 */   background: #e74c3c;
/* 3705 */   color: #ffffff;
/* 3706 */ }
/* 3707 */
/* 3708 */ .woocommerce nav.woocommerce-pagination ul li span.current {
/* 3709 */   background: #e74c3c;
/* 3710 */   color: #ffffff;
/* 3711 */ }
/* 3712 */
/* 3713 */ .woocommerce nav.woocommerce-pagination ul li {
/* 3714 */   border-right: none;
/* 3715 */ }
/* 3716 */
/* 3717 */ .woocommerce .page-numbers {
/* 3718 */   background-color: transparent;
/* 3719 */ }
/* 3720 */
/* 3721 */ /* Woocommerce Product Page */
/* 3722 */ .woocommerce .entry-summary {
/* 3723 */   margin-top: 0;
/* 3724 */ }
/* 3725 */
/* 3726 */ .woocommerce div.product .product_title {
/* 3727 */   margin-bottom: 20px;
/* 3728 */ }
/* 3729 */
/* 3730 */ .woocommerce .cart input[type=number] {
/* 3731 */   padding: 0;
/* 3732 */   line-height: 32px;
/* 3733 */   color: #222222;
/* 3734 */   font-weight: bold;
/* 3735 */ }
/* 3736 */
/* 3737 */ .woocommerce .star-rating span {
/* 3738 */   color: #eac600;
/* 3739 */ }
/* 3740 */
/* 3741 */ .woocommerce div.product .woocommerce-product-rating {
/* 3742 */   margin-bottom: 20px;
/* 3743 */ }
/* 3744 */
/* 3745 */ .woocommerce div.product p.price,
/* 3746 */ .woocommerce div.product span.price {
/* 3747 */   font-size: 15px;
/* 3748 */ }
/* 3749 */
/* 3750 */ .woocommerce .posted_in a,

/* style.css */

/* 3751 */ a.woocommerce-review-link {
/* 3752 */   color: #404040;
/* 3753 */ }
/* 3754 */
/* 3755 */ .woocommerce .posted_in a:hover,
/* 3756 */ a.woocommerce-review-link:hover {
/* 3757 */   color: #222222;
/* 3758 */ }
/* 3759 */
/* 3760 */ .woocommerce div.product p.price,
/* 3761 */ .woocommerce div.product span.price {
/* 3762 */   color: #3f3f3f;
/* 3763 */ }
/* 3764 */
/* 3765 */ .woocommerce div.product .woocommerce-tabs .panel {
/* 3766 */   margin: 10px 0 40px;
/* 3767 */   padding: 10px 0 20px;
/* 3768 */ }
/* 3769 */
/* 3770 */ .woocommerce div.product .woocommerce-tabs .panel h2,
/* 3771 */ .related > h2,
/* 3772 */ .woocommerce-checkout h3,
/* 3773 */ .cart_totals h2 {
/* 3774 */   font-size: 18px;
/* 3775 */   font-size: 1.125rem;
/* 3776 */   font-family: "Ubuntu", sans-serif;
/* 3777 */   font-weight: bold;
/* 3778 */   line-height: 1.3;
/* 3779 */   text-transform: uppercase;
/* 3780 */   display: inline-block;
/* 3781 */   margin-top: 0;
/* 3782 */   margin-bottom: 24px;
/* 3783 */ }
/* 3784 */
/* 3785 */ .cart_totals h2,
/* 3786 */ #order_review_heading {
/* 3787 */   margin-top: 2em;
/* 3788 */ }
/* 3789 */
/* 3790 */ .woocommerce #reviews #comments ol.commentlist li {
/* 3791 */   margin: 0 0 30px;
/* 3792 */ }
/* 3793 */
/* 3794 */ .woocommerce #reviews #comments ol.commentlist li .comment-text {
/* 3795 */   margin: 0 0 0 70px;
/* 3796 */   padding: 20px 20px 10px;
/* 3797 */   border-radius: 0;
/* 3798 */ }
/* 3799 */
/* 3800 */ .woocommerce #reviews #comments ol.commentlist li img.avatar {

/* style.css */

/* 3801 */   width: 50px;
/* 3802 */   background: #eeeeee;
/* 3803 */   border: 1px solid #eeeeee;
/* 3804 */   padding: 0;
/* 3805 */ }
/* 3806 */
/* 3807 */ .woocommerce #reviews h3 {
/* 3808 */   margin: 20px 0;
/* 3809 */ }
/* 3810 */
/* 3811 */ .woocommerce #review_form .stars {
/* 3812 */   margin-bottom: 0;
/* 3813 */ }
/* 3814 */
/* 3815 */ .woocommerce #review_form #respond p {
/* 3816 */   margin: 0 0 25px;
/* 3817 */ }
/* 3818 */
/* 3819 */ .select2-container .select2-choice {
/* 3820 */   border: 1px solid #eee;
/* 3821 */   border-radius: 0;
/* 3822 */ }
/* 3823 */
/* 3824 */ .woocommerce .widget_price_filter .ui-slider {
/* 3825 */   margin-top: 5px;
/* 3826 */ }
/* 3827 */
/* 3828 */ .woocommerce span.onsale {
/* 3829 */   background-color: #e74c3c;
/* 3830 */ }
/* 3831 */
/* 3832 */ .woocommerce ul.products li.product .price {
/* 3833 */   color: #404040;
/* 3834 */ }
/* 3835 */
/* 3836 */ .woocommerce-widget-area ul {
/* 3837 */   list-style: none;
/* 3838 */   margin: 0;
/* 3839 */ }
/* 3840 */
/* 3841 */ .woocommerce-widget-area ul li {
/* 3842 */   margin: 0.4em 0;
/* 3843 */   padding: 0 1.2em;
/* 3844 */ }
/* 3845 */
/* 3846 */ .woocommerce-widget-area ul li a {
/* 3847 */   color: #383732;
/* 3848 */ }
/* 3849 */
/* 3850 */ .woocommerce-widget-area ul li a:hover {

/* style.css */

/* 3851 */   text-decoration: none;
/* 3852 */   color: #e74c3c;
/* 3853 */ }
/* 3854 */
/* 3855 */ .woocommerce-widget-area .widget-title {
/* 3856 */   background: #e74c3c;
/* 3857 */   color: white;
/* 3858 */   display: inline-block;
/* 3859 */   font-family: "Ubuntu", sans-serif;
/* 3860 */   font-size: 15px;
/* 3861 */   font-size: 1.5rem;
/* 3862 */   font-weight: 500;
/* 3863 */   height: 32px;
/* 3864 */   line-height: 32px;
/* 3865 */   margin: 0 0 1px 0;
/* 3866 */   padding: 0 1.2em;
/* 3867 */   text-transform: uppercase;
/* 3868 */ }
/* 3869 */
/* 3870 */ .woocommerce #respond input#submit.alt,
/* 3871 */ .woocommerce a.button.alt,
/* 3872 */ .woocommerce button.button.alt,
/* 3873 */ .woocommerce input.button.alt {
/* 3874 */   background: #e74c3c;
/* 3875 */   transition: all 0.2s ease-in-out;
/* 3876 */ }
/* 3877 */
/* 3878 */ .woocommerce #respond input#submit.alt:hover,
/* 3879 */ .woocommerce a.button.alt:hover,
/* 3880 */ .woocommerce button.button.alt:hover,
/* 3881 */ .woocommerce input.button.alt:hover {
/* 3882 */   background: #333333;
/* 3883 */ }
/* 3884 */
/* 3885 */ .woocommerce #respond input#submit.disabled,
/* 3886 */ .woocommerce #respond input#submit:disabled,
/* 3887 */ .woocommerce #respond input#submit:disabled[disabled],
/* 3888 */ .woocommerce a.button.disabled, .woocommerce a.button:disabled,
/* 3889 */ .woocommerce a.button:disabled[disabled],
/* 3890 */ .woocommerce button.button.disabled,
/* 3891 */ .woocommerce button.button:disabled,
/* 3892 */ .woocommerce button.button:disabled[disabled],
/* 3893 */ .woocommerce input.button.disabled,
/* 3894 */ .woocommerce input.button:disabled,
/* 3895 */ .woocommerce input.button:disabled[disabled] {
/* 3896 */   padding: 11px 15px;
/* 3897 */ }
/* 3898 */
/* 3899 */ .woocommerce #respond input#submit.alt.disabled,
/* 3900 */ .woocommerce #respond input#submit.alt.disabled:hover,

/* style.css */

/* 3901 */ .woocommerce #respond input#submit.alt:disabled,
/* 3902 */ .woocommerce #respond input#submit.alt:disabled:hover,
/* 3903 */ .woocommerce #respond input#submit.alt:disabled[disabled],
/* 3904 */ .woocommerce #respond input#submit.alt:disabled[disabled]:hover,
/* 3905 */ .woocommerce a.button.alt.disabled,
/* 3906 */ .woocommerce a.button.alt.disabled:hover,
/* 3907 */ .woocommerce a.button.alt:disabled,
/* 3908 */ .woocommerce a.button.alt:disabled:hover,
/* 3909 */ .woocommerce a.button.alt:disabled[disabled],
/* 3910 */ .woocommerce a.button.alt:disabled[disabled]:hover,
/* 3911 */ .woocommerce button.button.alt.disabled,
/* 3912 */ .woocommerce button.button.alt.disabled:hover,
/* 3913 */ .woocommerce button.button.alt:disabled,
/* 3914 */ .woocommerce button.button.alt:disabled:hover,
/* 3915 */ .woocommerce button.button.alt:disabled[disabled],
/* 3916 */ .woocommerce button.button.alt:disabled[disabled]:hover,
/* 3917 */ .woocommerce input.button.alt.disabled,
/* 3918 */ .woocommerce input.button.alt.disabled:hover,
/* 3919 */ .woocommerce input.button.alt:disabled,
/* 3920 */ .woocommerce input.button.alt:disabled:hover,
/* 3921 */ .woocommerce input.button.alt:disabled[disabled],
/* 3922 */ .woocommerce input.button.alt:disabled[disabled]:hover {
/* 3923 */   background-color: #888;
/* 3924 */ }
/* 3925 */
/* 3926 */ .pswp button:active {
/* 3927 */   top: 50%;
/* 3928 */ }
/* 3929 */
/* 3930 */ .woocommerce .flex-control-nav {
/* 3931 */   display: block;
/* 3932 */ }
/* 3933 */ .woocommerce .label label {
/* 3934 */   color: #404040;
/* 3935 */   line-height: 50px;
/* 3936 */   font-size: 14px;
/* 3937 */ }
/* 3938 */
/* 3939 */ .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
/* 3940 */   margin-bottom: 60px;
/* 3941 */ }
/* 3942 */
/* 3943 */ .woocommerce .entry-header .hitmag-social-sharing {
/* 3944 */   display: none;
/* 3945 */ }
/* 3946 */
/* 3947 */ .woocommerce-loop-product__title {
/* 3948 */   color: #222222;
/* 3949 */ }
/* 3950 */ .woocommerce-loop-product__title:hover {

/* style.css */

/* 3951 */   color: #e74c3c;
/* 3952 */ }
/* 3953 */
/* 3954 */ .woocommerce-page.single-product .entry-header {
/* 3955 */   margin-bottom: 40px;
/* 3956 */ }
/* 3957 */
/* 3958 */ .woocommerce table.shop_attributes td p {
/* 3959 */   padding: 8px 16px;
/* 3960 */ }
/* 3961 */
/* 3962 */ .woocommerce #infinite-handle {
/* 3963 */   display: none;
/* 3964 */ }
/* 3965 */
/* 3966 */ .woocommerce-cart .actions .button:disabled {
/* 3967 */   background: #ccc;
/* 3968 */ }
/* 3969 */
/* 3970 */ .woocommerce #content table.cart td.actions .input-text,
/* 3971 */ .woocommerce table.cart td.actions .input-text,
/* 3972 */ .woocommerce-page #content table.cart td.actions .input-text,
/* 3973 */ .woocommerce-page table.cart td.actions .input-text {
/* 3974 */   width: 110px;
/* 3975 */ }
/* 3976 */
/* 3977 */ #add_payment_method .wc-proceed-to-checkout a.checkout-button,
/* 3978 */ .woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
/* 3979 */ .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
/* 3980 */   font-size: 1em;
/* 3981 */ }
/* 3982 */
/* 3983 */ #review_form .comment-reply-title {
/* 3984 */   border: none;
/* 3985 */   margin-bottom: 1em;
/* 3986 */   display: block;
/* 3987 */ }
/* Minify_CSS_UriRewriter::$debugText

*/

/* swiper-bundle.min.css */

/* 1  */ /**
/* 2  *|  * Swiper 9.2.4
/* 3  *|  * Most modern mobile touch slider and framework with hardware accelerated transitions
/* 4  *|  * https://swiperjs.com
/* 5  *|  *
/* 6  *|  * Copyright 2014-2023 Vladimir Kharlampidi
/* 7  *|  *
/* 8  *|  * Released under the MIT License
/* 9  *|  *
/* 10 *|  * Released on: April 24, 2023
/* 11 *|  */
/* 12 */ .hm-swiper-slide,.hm-swiper-wrapper,swiper-slide{height:100%;position:relative;transition-property:transform;width:100%}:root{--swiper-theme-color:#007aff;--swiper-navigation-size:44px}.hm-swiper,swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.hm-swiper-vertical>.hm-swiper-wrapper{flex-direction:column}.hm-swiper-wrapper{z-index:1;display:flex;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.hm-swiper-android .hm-swiper-slide,.hm-swiper-wrapper{transform:translate3d(0,0,0)}.hm-swiper-horizontal{touch-action:pan-y}.hm-swiper-vertical{touch-action:pan-x}.hm-swiper-slide,swiper-slide{flex-shrink:0;display:block}.hm-swiper-slide-invisible-blank{visibility:hidden}.hm-swiper-autoheight,.hm-swiper-autoheight .hm-swiper-slide{height:auto}.hm-swiper-autoheight .hm-swiper-wrapper{align-items:flex-start;transition-property:transform,height}.hm-swiper-backface-hidden .hm-swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.hm-swiper-3d,.hm-swiper-3d.hm-swiper-css-mode .hm-swiper-wrapper{perspective:1200px}.hm-swiper-3d .hm-swiper-cube-shadow,.hm-swiper-3d .hm-swiper-slide,.hm-swiper-3d .hm-swiper-slide-shadow,.hm-swiper-3d .hm-swiper-slide-shadow-bottom,.hm-swiper-3d .hm-swiper-slide-shadow-left,.hm-swiper-3d .hm-swiper-slide-shadow-right,.hm-swiper-3d .hm-swiper-slide-shadow-top,.hm-swiper-3d .hm-swiper-wrapper{transform-style:preserve-3d}.hm-swiper-3d .hm-swiper-slide-shadow,.hm-swiper-3d .hm-swiper-slide-shadow-bottom,.hm-swiper-3d .hm-swiper-slide-shadow-left,.hm-swiper-3d .hm-swiper-slide-shadow-right,.hm-swiper-3d .hm-swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.hm-swiper-3d .hm-swiper-slide-shadow{background:rgba(0,0,0,.15)}.hm-swiper-3d .hm-swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.hm-swiper-3d .hm-swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.hm-swiper-3d .hm-swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.hm-swiper-3d .hm-swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.hm-swiper-css-mode>.hm-swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.hm-swiper-css-mode>.hm-swiper-wrapper::-webkit-scrollbar{display:none}.hm-swiper-css-mode>.hm-swiper-wrapper>.hm-swiper-slide{scroll-snap-align:start start}.hm-swiper-horizontal.hm-swiper-css-mode>.hm-swiper-wrapper{scroll-snap-type:x mandatory}.hm-swiper-vertical.hm-swiper-css-mode>.hm-swiper-wrapper{scroll-snap-type:y mandatory}.hm-swiper-centered>.hm-swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.hm-swiper-centered>.hm-swiper-wrapper>.hm-swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.hm-swiper-centered.hm-swiper-horizontal>.hm-swiper-wrapper>.hm-swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.hm-swiper-centered.hm-swiper-horizontal>.hm-swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.hm-swiper-centered.hm-swiper-vertical>.hm-swiper-wrapper>.hm-swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.hm-swiper-centered.hm-swiper-vertical>.hm-swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.hm-swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.hm-swiper-watch-progress .hm-swiper-slide-visible .hm-swiper-lazy-preloader,.hm-swiper:not(.hm-swiper-watch-progress) .hm-swiper-lazy-preloader,swiper-container:not(.hm-swiper-watch-progress) .hm-swiper-lazy-preloader{animation:1s linear infinite swiper-preloader-spin}.hm-swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.hm-swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.hm-swiper-button-next,.hm-swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.8);text-shadow:1px 1px 0 rgba(255,255,255,.3);padding:0 22px;-webkit-transition:.3s ease-in-out;-moz-transition:.3s ease-in-out;-ms-transition:.3s ease-in-out;-o-transition:.3s ease-in-out;transition:.3s ease-in-out}@media (max-width:639px){.hm-swiper-button-next.swiper-button-disabled,.hm-swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}}@media (min-width:640px){.hm-swiper-button-next,.hm-swiper-button-prev{opacity:0}.hm-swiper:hover .hm-swiper-button-next,.hm-swiper:hover .hm-swiper-button-prev{opacity:1}.hm-swiper:hover .hm-swiper-button-next.swiper-button-disabled,.hm-swiper:hover .hm-swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}}.hm-swiper-button-next:hover,.hm-swiper-button-prev:hover{color:#fff}.hm-swiper-button-next.swiper-button-hidden,.hm-swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.hm-swiper-navigation-disabled .hm-swiper-button-next,.hm-swiper-navigation-disabled .hm-swiper-button-prev{display:none!important}.hm-swiper-button-next:after,.hm-swiper-button-prev:after{text-shadow:1px 1px 0 rgba(255,255,255,.3);font-family:'Font Awesome 6 Free';font-weight:900;display:inline-block;text-rendering:auto;-webkit-font-smoothing:antialiased;font-size:28px}.hm-swiper-button-prev:after,.hm-swiper-rtl .hm-swiper-button-next:after{content:'\f053'}.hm-swiper-button-next:after,.hm-swiper-rtl .hm-swiper-button-prev:after{content:'\f054'}.hm-swiper-button-prev,.hm-swiper-rtl .hm-swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.hm-swiper-button-next,.hm-swiper-rtl .hm-swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.hm-slide-holder:before,.hm-swiper-button-lock{display:none}.hm-swiper-fade.hm-swiper-free-mode .hm-swiper-slide{transition-timing-function:ease-out}.hm-swiper-fade .hm-swiper-slide{pointer-events:none;transition-property:opacity}.hm-swiper-fade .hm-swiper-slide .hm-swiper-slide{pointer-events:none}.hm-swiper-fade .hm-swiper-slide-active,.hm-swiper-fade .hm-swiper-slide-active .hm-swiper-slide-active{pointer-events:auto}.hm-slide-image{position:relative;width:100%;padding-top:48.97959183673469%}.hm-slide-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;position:absolute;top:0;}
