/* -----------------------------------------------------------------------------
   Project:     Tarteel
   File:        styles.scss
   Description: Stylesheet that imports all SCSS modules, components,
                utilities, and layout systems. This file compiles into the main
                CSS output used across the entire theme.
   Author:      FlatCoding
   Version:     1.0.0
 ----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
   TABLE OF CONTENTS
   ----------------------------------------------------------------------------- 

   01. Base
       01.1 Root Variables
       01.2 Base Styles
       01.3 Typography
       01.4 Helper Classes

   02. Layout
       02.1 Wrapper
       02.2 Grid System
       02.3 Gutters
       02.4 Order Utilities
       02.5 Visibility Utilities

   03. Elements
       03.1 Forms
       03.2 Anchors
       03.3 Buttons
       03.4 Tables

   04. Parts
       04.1 Breadcrumbs
       04.2 Ratings
       04.3 Content Blocks
       04.4 Pagination
       04.5 Color Utilities
       04.6 Owl Carousel Styles
       04.7 Light / Dark Modes
       04.8 Commerce Elements
       04.9 Animations
       04.10 Logo Styles
       04.11 Badges
       04.12 Navigation
       04.13 Headings
       04.14 Generic Blocks
       04.15 Stories
       04.16 Editors & Thumbnails
       04.17 Cards
       04.18 Hover Effects
       04.19 Widgets
       04.20 Block Collection
       04.21 Hero Sections
       04.22 Map
       04.23 Shop Layout
       04.24 Charts
       04.25 Events

   05. Components
       05.1 Headers
       05.2 Footer
       05.3 Sidebars
       05.4 Modals

 ----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
   01. BASE
   ----------------------------------------------------------------------------- */
/*
   ===========================================
   Global CSS variables and theme tokens
   ===========================================
*/
:root {
  /* Color System */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-thick: #504360;
  --color-primary: #504360;
  --color-basic: #504360;
  --color-primary-bg: #ffffff;
  --color-higlighted: rgb(228, 225, 255);
  --color-secondary: #8e37fc;
  --color-secondary-thick: #4a1095;
  --color-single-cover: var(--color-basic);
  --color-hover: #291a3b;
  --color-gray-25: #dce4f5;
  --color-gray-50: #f8f9ff;
  --color-gray-100: #f9f7fa;
  --color-gray-200: #efeafa;
  --color-gray-300: #dbd9e4;
  --color-gray-400: #e3e4ff;
  --color-gray-500: #97979d;
  --color-gray-600: #877997;
  --color-gray-700: #737373;
  --color-gray-800: #bbbbbb;
  --color-success: #11bf31;
  --color-danger: #fc293e;
  --color-highlight: #fcffb2;
  --color-rating: #cccccc;
  --color-border: #e9e9e9;
  --color-border-thick: #999999;
  --color-border-secondary: var(--color-secondary);
  --color-odd-row: #f2f2f2;
  --color-even-row: var(--color-primary-bg);
  --color-box-shadow: #f3f6fa;
  --color-badge-bg: var(--color-secondary);
  --color-transparent: transparent;
  --color-overlay: rgba(0, 0, 0, 0.6);
  --color-secondary-light-rgba: #8e37fc26;
  --color-trend-icon: rgba(0, 0, 0, 0.3);
  --color-meta: rgba(255, 255, 255, 0.68);
  --color-event-date-bg: rgb(238, 238, 238);
  --box-shadow:
    0 30px 70px rgba(137, 139, 142, 0.15), 0 10px 20px rgba(137, 139, 142, 0.1);
  --color-line: var(--color-secondary);
  --color-fill: transparent;
  /* FONT TYPE */
  --font-primary: "Poppins", sans-serif;
  /* TYPOGRAPHY */
  --text-size-xxs: 0.69rem;
  --text-size-xs: 0.75rem;
  --text-size-sm: 0.88rem;
  --text-size-md: 1rem;
  --text-size-lg: 1.13rem;
  --text-size-xl: 1.38rem;
  --text-size-2xl: 1.69rem;
  --text-size-3xl: 2rem;
  --text-size-4xl: 2.5rem;
  --text-size-hero: 3.5rem;
  --font-weight-regular: 400;
  --font-weight-medium: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --line-height-base: 1.7;
  --line-height-heading: 1.4;
  --line-height-ratio: 0.4rem;
  /* BUTTONS */
  --btn-text: var(--color-primary);
  --btn-text-hover: var(--color-primary);
  --btn-bg: var(--color-gray-50);
  --btn-bg-hover: var(--color-primary-bg);
  --btn-border: var(--color-border);
  --btn-border-hover: #dddddd;
  --btn-gradient: linear-gradient(to bottom, #8e37fc, #de2572);
  /* HEADER */
  --header-bg: var(--color-primary-bg);
  --header-height: 75px;
  --header-gap: 1.7rem;
  --header-shadow: var(--box-shadow);
  --nav-text-size: 14px;
  --nav-text-color: var(--color-primary);
  --nav-text-hover: var(--color-hover);
  --nav-text-transform: capitalize;
  --nav-text-weight: var(--font-weight-medium);
  --dropdown-bg: var(--color-primary-bg);
  --dropdown-text-size: var(--text-size-md);
  --dropdown-text: var(--color-primary);
  --dropdown-shadow: var(--header-shadow);
  --dropdown-text-weight: var(--nav-text-weight);
  --dropdown-box-shadow: var(--box-shadow);
  /* SIDEBAR */
  --sidebar-bg: var(--color-primary-bg);
  --sidebar-text-size: var(--nav-text-size);
  --sidebar-text-weight: var(--nav-text-weight);
  --sidebar-text-color: var(--color-primary);
  --sidebar-text-transform: var(--nav-text-transform);
  /* CARDS / BLOCKS */
  --block-bg: var(--color-primary-bg);
  --block-radius: 10px;
  --block-shadow: var(--header-shadow);
  --float-bg: linear-gradient(
    to top,
    rgba(80, 67, 96, 0.6) 0%,
    rgba(80, 67, 96, 0) 100%
  );
  --svg-circle: url("../icons/tar-circle-shape.svg");
  --img-overlay: rgba(255, 255, 255, 0.5);
  --svg-mask: rgba(142, 55, 252, 0.2);
  /*LOGO SIZES*/
  --logo-xs: 31px;
  --logo-sm: 90px;
  --logo-md: 120px;
  --logo-lg: 150px;
  --logo-xl: 180px;
  /* MODAL */
  --modal-bg: var(--color-primary-bg);
  --modal-width: 500px;
  --modal-top: 50%;
  --modal-type: fixed;
  /* HERO */
  --hero-heading-color: var(--color-primary);
  --hero-highlight: var(--color-secondary);
  --hero-text-color: var(--color-gray-600);
  --hero-bg: #f2f2fa;
  --hero-form-bg: aliceblue;
  --hero-image: url("../icons/tar-svg-leafs.svg");
  --hero-leaf: radial-gradient(
    circle at bottom right,
    rgba(150, 100, 255, 0.25),
    rgba(237, 237, 244, 0.01)
  );
  /* Dark Mode */
  --color-thick-dark: #15181e;
  --color-white-dark: #fff;
  --color-black-dark: #000000;
  --color-primary-dark: rgba(255, 255, 255, 0.85);
  --color-primary-bg-dark: #1a2132;
  --color-secondary-dark: #9c27b0;
  --color-secondary-thick-dark: #b02ac8;
  --color-higlighted-dark: #b02ac8;
  --color-cover-rating-color: #f09ffe;
  --color-hover-dark: #ffffff;
  --color-gray-25-dark: #2f3544;
  --color-gray-50-dark: #171d2b;
  --color-gray-100-dark: rgba(42, 47, 61, 0.059);
  --color-gray-200-dark: #32394a;
  --color-gray-300-dark: #3b4457;
  --color-gray-400-dark: #454e63;
  --color-gray-500-dark: #868b99;
  --color-gray-600-dark: #a5aab7;
  --color-gray-700-dark: #cccccc;
  --color-gray-800-dark: #e0e0e0;
  --color-success-dark: #11bf31;
  --color-danger-dark: #fc293e;
  --color-rating-dark: #555555;
  --color-border-dark: rgba(255, 255, 255, 0.092);
  --color-badge-bg-dark: var(--color-black-dark);
  --color-border-secondary-dark: var(--color-secondary-dark);
  --color-odd-row-dark: #222836;
  --color-even-row-dark: #1a2132;
  --color-box-shadow-dark: rgba(0, 0, 0, 0.3);
  --color-transparent-dark: transparent;
  --color-overlay-dark: rgba(0, 0, 0, 0.6);
  --color-secondary-light-rgba-dark: #8e37fc26;
  --color-trend-icon-dark: rgba(255, 255, 255, 0.3);
  --color-meta-dark: rgba(255, 255, 255, 0.5);
  --color-event-date-bg-dark: #2f3645;
  --btn-text-dark: #ffffff;
  --btn-bg-dark: #2a2f3d;
  --btn-bg-hover-dark: #32394a;
  --btn-border-dark: #3b4457;
  --btn-border-hover-dark: #555555;
  --btn-gradient-dark: linear-gradient(to bottom, #8e37fc, #5a1faf);
  --header-bg-dark: #9c27b0;
  --nav-text-color-dark: var(--color-primary-dark);
  --nav-text-hover-dark: var(--color-hover-dark);
  --dropdown-bg-dark: var(--header-bg-dark);
  --sidebar-bg-dark: var(--color-primary-bg-dark);
  --sidebar-text-color-dark: #ffffff;
  --block-bg-dark: var(--color-primary-bg-dark);
  --float-bg-dark: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  --svg-circle-dark: url("../icons/tar-circle-shape-light.svg");
  --img-overlay-dark: transparent;
  --svg-mask-dark: rgba(142, 55, 252, 0.4);
  --modal-bg-dark: #1a2132;
  --hero-heading-color-dark: #ffffff;
  --hero-highlight-dark: var(--color-secondary-thick-dark);
  --hero-text-color-dark: #cccccc;
  --hero-bg-dark: #121722;
  --hero-form-bg-dark: #1e2533;
  --hero-image-dark: url("../icons/tar-svg-leafs-light.svg");
  --hero-leaf-dark: radial-gradient(
    circle at bottom right,
    rgba(150, 100, 255, 0.12),
    rgba(0, 0, 0, 0)
  );
}

/* 
   ===========================================
   Browser resets and base normalizations
   ===========================================
*/
*,
::after,
::before,
::backdrop,
::file-selector-button {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  user-select: auto;
}

html {
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  line-height: var(--line-height-base);
  font-size: var(--text-size-md);
  font-family: var(--font-primary);
  color: var(--color-primary);
  background-color: var(--color-primary-bg);
  font-style: normal;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
}
body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 0px;
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

a,
a:active,
a:visited,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.8em;
}

sub,
sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

ul,
ol,
menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

table {
  border-collapse: collapse;
  border-color: inherit;
  text-indent: 0;
}

hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 1.5em 0;
}

img,
video,
svg,
canvas,
audio,
iframe,
embed,
object,
picture {
  display: block;
  max-width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
  object-fit: cover;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: var(--color-transparent);
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  line-height: inherit;
  cursor: pointer;
  outline: none;
}

textarea {
  resize: vertical;
}

::-moz-placeholder {
  color: currentColor;
  opacity: 1;
  font-size: var(--text-size-sm);
}

::placeholder {
  color: currentColor;
  opacity: 1;
  font-size: var(--text-size-sm);
}

[hidden] {
  display: none !important;
}

:focus {
  outline: 0px solid var(--color-border);
  outline-offset: 2px;
}

::-moz-selection {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

::selection {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.tar-bg-beige {
  background-color: var(--color-border);
}

/* Override Quill Editor */
.ql-toolbar.ql-snow,
.ql-container.ql-snow {
  border-color: transparent;
}

.ql-toolbar.ql-snow {
  background-color: var(--color-gray-50);
  padding: 20px;
}

.ql-editor.ql-blank::before,
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: var(--color-primary);
}

.tar-flex-basis-120 {
  /* IE10 */
  flex-basis: 120px;
}

/* 
   ===========================================
   Font settings, headings, text utilities
   ===========================================
*/
.tar-hero-text,
.tar-hero-text-bold {
  font-size: var(--text-size-hero);
  line-height: var(--line-height-heading);
}
@media (max-width: 767px) {
  .tar-hero-text,
  .tar-hero-text-bold {
    font-size: 28px;
  }
}

h1,
.tar-text-big,
.tar-text-big-bold {
  font-size: var(--text-size-4xl);
  line-height: var(--line-height-heading);
}
@media (max-width: 767px) {
  h1,
  .tar-text-big,
  .tar-text-big-bold {
    font-size: 28px;
  }
}

h2,
.tar-text-xl,
.tar-text-xl-bold {
  font-size: var(--text-size-3xl);
  line-height: var(--line-height-heading);
}
@media (max-width: 767px) {
  h2,
  .tar-text-xl,
  .tar-text-xl-bold {
    font-size: 26px;
  }
}

h3,
.tar-text-lg,
.tar-text-lg-bold {
  font-size: var(--text-size-2xl);
  line-height: var(--line-height-heading);
}
@media (max-width: 767px) {
  h3,
  .tar-text-lg,
  .tar-text-lg-bold {
    font-size: 23px;
  }
}

h4,
.tar-text-md,
.tar-text-md-bold {
  font-size: var(--text-size-xl);
  line-height: var(--line-height-heading);
}
@media (max-width: 767px) {
  h4,
  .tar-text-md,
  .tar-text-md-bold {
    font-size: 20px;
  }
}

h5,
.tar-text-sm,
.tar-text-sm-bold {
  font-size: var(--text-size-lg);
  line-height: var(--line-height-heading);
}

h6,
.tar-text-xs,
.tar-text-xs-bold {
  font-size: var(--text-size-md);
  line-height: var(--line-height-base);
}

.tar-text-xss {
  font-size: var(--text-size-sm);
  line-height: var(--line-height-base);
}

.tar-meta-text {
  font-size: 12px;
  color: var(--color-gray-500);
}

.tar-meta-white {
  --color-gray-500: var(--color-meta);
}

.tar-text-mini,
.tar-text-mini-bold {
  font-size: var(--text-size-sm);
}

h1,
.tar-text-sm,
h2,
.tar-text-md,
h3,
.tar-text-lg,
h4,
.tar-text-big,
h5,
h6,
.tar-hero-text {
  font-weight: var(--font-weight-medium);
}

.tar-text-sm-bold,
.tar-text-md-bold,
.tar-text-lg-bold,
.tar-text-big-bold,
.tar-hero-text-bold,
.tar-text-mini-bold {
  font-weight: var(--font-weight-bold);
}

.tar-text-highlight {
  color: var(--hero-highlight);
}

.tar-small-heading {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
}

/* 
   ===========================================
   Helper classes (margins, paddings, flex, etc.)
   ===========================================
*/
/*Flex Containers*/
.tar-flexbox {
  display: -moz-flex;
  display: flex;
}

.tar-flex-center {
  /* old WebKit */ /* IE10 */
  align-items: center;
}

.tar-flex-row {
  flex-direction: row;
}

.tar-flex-column {
  flex-direction: column;
}

.tar-flex-content-center {
  /* old WebKit */ /* IE10 */
  justify-content: center;
}

.tar-flex-content-left {
  /* old WebKit */ /* IE10 */
  justify-content: flex-start;
}

.tar-flex-content-right {
  /* old WebKit */ /* IE10 */
  justify-content: flex-end;
}

.tar-flex-content-space-between {
  /* old WebKit */ /* IE10 */
  justify-content: space-between;
}

.tar-flex-push-left {
  margin-right: auto;
}

.tar-flex-push-right {
  margin-left: auto;
}

.tar-flex-push-right-unset {
  margin-left: unset !important;
}

.tar-flex-wrap {
  /* old WebKit */ /* IE10 */
  flex-wrap: wrap;
}

.tar-flex {
  flex: 1;
}

.tar-make-center {
  margin-left: auto;
  margin-right: auto;
}

/*Flex Grow / Shrink*/
.tar-flex-grow-0 {
  -moz-flex-grow: 0;
  -ms-flex-grow: 0;
  flex-grow: 0;
}

.tar-flex-shrink-0 {
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}

.tar-flex-grow-1 {
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
}

.tar-flex-shrink-1 {
  -ms-flex-shrink: 1;
  flex-shrink: 1;
}

.tar-flex-grow-2 {
  -moz-flex-grow: 2;
  -ms-flex-grow: 2;
  flex-grow: 2;
}

.tar-flex-shrink-2 {
  -ms-flex-shrink: 2;
  flex-shrink: 2;
}

.tar-flex-grow-3 {
  -moz-flex-grow: 3;
  -ms-flex-grow: 3;
  flex-grow: 3;
}

.tar-flex-shrink-3 {
  -ms-flex-shrink: 3;
  flex-shrink: 3;
}

.tar-flex-grow-4 {
  -moz-flex-grow: 4;
  -ms-flex-grow: 4;
  flex-grow: 4;
}

.tar-flex-shrink-4 {
  -ms-flex-shrink: 4;
  flex-shrink: 4;
}

.tar-flex-grow-5 {
  -moz-flex-grow: 5;
  -ms-flex-grow: 5;
  flex-grow: 5;
}

.tar-flex-shrink-5 {
  -ms-flex-shrink: 5;
  flex-shrink: 5;
}

/*Align Items*/
.tar-items-center {
  /* old WebKit */ /* IE10 */
  align-items: center;
}

.tar-items-start {
  /* old WebKit */ /* IE10 */
  align-items: flex-start;
}

.tar-items-end {
  /* old WebKit */ /* IE10 */
  align-items: flex-end;
}

/*Align Content*/
.tar-align-center {
  /* older WebKit browsers */
  -ms-align-content: center; /* older Microsoft prefixed version */
  align-content: center; /* standard property */
}

.tar-align-start {
  /* older WebKit browsers */
  -ms-align-content: flex-start; /* older Microsoft prefixed version */
  align-content: flex-start; /* standard property */
}

.tar-align-end {
  /* older WebKit browsers */
  -ms-align-content: flex-end; /* older Microsoft prefixed version */
  align-content: flex-end; /* standard property */
}

/*Text Alignment Utilities*/
.tar-text-center {
  text-align: center;
}

.tar-text-left {
  text-align: left;
}

.tar-text-right {
  text-align: right;
}

/*Positions*/
.tar-relative {
  position: relative;
}

.tar-overflow-y {
  overflow-y: auto;
}

.tar-overflow-x {
  overflow-x: auto;
}

.tar-overflow-y,
.tar-overflow-x {
  -webkit-overflow-scrolling: touch;
}
.tar-overflow-y::-webkit-scrollbar,
.tar-overflow-x::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.tar-overflow-y::-webkit-scrollbar-track,
.tar-overflow-x::-webkit-scrollbar-track {
  background: transparent;
}
.tar-overflow-y::-webkit-scrollbar-thumb,
.tar-overflow-x::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 0px;
}
.tar-overflow-y::-webkit-scrollbar-thumb:hover,
.tar-overflow-x::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/*Mask ans close handler*/
.tar-mask {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--color-overlay);
  z-index: 200;
  display: none;
}

.tar-close-handler {
  transition: transform 0.3s ease;
}

/*Layers*/
.tar-z-indez-under {
  z-index: 1;
}

.tar-z-indez-above {
  z-index: 10;
}

.tar-z-index-top {
  z-index: 100;
}

/*Borders*/
.tar-border-style {
  border: 1px solid var(--color-border);
}

.tar-bordered-layout {
  border: 3px solid var(--color-gray-400);
  padding: 25px 20px;
  border-radius: 15px;
}

.tar-hero-author {
  --hero-bg: var(--color-primary-bg);
}

.tar-bg-gray {
  background-color: var(--color-gray-100);
}

.tar-radius-10 {
  border-radius: 10px;
}

.tar-radius-15 {
  border-radius: 15px;
}

.tar-radius-20 {
  border-radius: 20px;
}

.tar-radius-25 {
  border-radius: 25px;
}

.tar-radius-30 {
  border-radius: 30px;
}

.tar-radius-35 {
  border-radius: 35px;
}

.tar-radius-40 {
  border-radius: 40px;
}

.tar-radius-45 {
  border-radius: 45px;
}

.tar-radius-50 {
  border-radius: 50px;
}

.tar-radius-10p {
  border-radius: 10%;
}

.tar-radius-25p {
  border-radius: 25%;
}

.tar-radius-50p {
  border-radius: 50%;
}

.tar-radius-100p {
  border-radius: 100%;
}

.tar-static-container {
  border-radius: 5px;
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
}
.tar-static-container .fc-icon {
  font-size: 20px;
  background: var(--color-basic);
  color: var(--color-white);
  width: 55px;
  height: 55px;
  border-radius: 6px;
}
.tar-static-container strong {
  display: block;
  font-size: 30px;
}
.tar-static-container span {
  font-size: 14px;
}

.tar-profile-thumbnail {
  width: 100px;
  height: 100px;
}

/* -----------------------------------------------------------------------------
   02. LAYOUT
   ----------------------------------------------------------------------------- */
/* 
   ===========================================
   Main content wrapper widths
   ===========================================
*/
.tar-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.tar-container.tar-xs {
  max-width: 370px;
}
.tar-container.tar-sm {
  max-width: 576px;
}
.tar-container.tar-md {
  max-width: 768px;
}
.tar-container.tar-lg {
  max-width: 992px;
}
.tar-container.tar-xl {
  max-width: 1200px;
}
.tar-container.tar-xxl {
  max-width: 1400px;
}

/*
   ===========================================
   Grid system, columns, responsive rows
   ===========================================
*/
.tar-row {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  flex-wrap: wrap;
}
.tar-row.tar-xs {
  width: 100%;
  max-width: 370px;
}
.tar-row.tar-sm {
  width: 100%;
  max-width: 576px;
}
.tar-row.tar-md {
  width: 100%;
  max-width: 768px;
}
.tar-row.tar-lg {
  width: 100%;
  max-width: 992px;
}
.tar-row.tar-xl {
  width: 100%;
  max-width: 1200px;
}
.tar-row.tar-xxl {
  width: 100%;
  max-width: 1400px;
}
.tar-row .tar-col {
  width: 100%;
  flex: 0 0 auto;
}
@media (min-width: 370px) {
  .tar-row .tar-col.tar-xs-1 {
    max-width: 8.3333333333%;
  }
  .tar-row .tar-col.tar-xs-2 {
    max-width: 16.6666666667%;
  }
  .tar-row .tar-col.tar-xs-3 {
    max-width: 25%;
  }
  .tar-row .tar-col.tar-xs-4 {
    max-width: 33.3333333333%;
  }
  .tar-row .tar-col.tar-xs-5 {
    max-width: 41.6666666667%;
  }
  .tar-row .tar-col.tar-xs-6 {
    max-width: 50%;
  }
  .tar-row .tar-col.tar-xs-7 {
    max-width: 58.3333333333%;
  }
  .tar-row .tar-col.tar-xs-8 {
    max-width: 66.6666666667%;
  }
  .tar-row .tar-col.tar-xs-9 {
    max-width: 75%;
  }
  .tar-row .tar-col.tar-xs-10 {
    max-width: 83.3333333333%;
  }
  .tar-row .tar-col.tar-xs-11 {
    max-width: 91.6666666667%;
  }
  .tar-row .tar-col.tar-xs-12 {
    max-width: 100%;
  }
  .tar-row .tar-col.tar-xs-1-half {
    max-width: 12.5%;
  }
  .tar-row .tar-col.tar-xs-2-half {
    max-width: 20.8333333333%;
  }
  .tar-row .tar-col.tar-xs-3-half {
    max-width: 29.1666666667%;
  }
  .tar-row .tar-col.tar-xs-4-half {
    max-width: 37.5%;
  }
  .tar-row .tar-col.tar-xs-5-half {
    max-width: 45.8333333333%;
  }
  .tar-row .tar-col.tar-xs-6-half {
    max-width: 54.1666666667%;
  }
  .tar-row .tar-col.tar-xs-7-half {
    max-width: 62.5%;
  }
  .tar-row .tar-col.tar-xs-8-half {
    max-width: 70.8333333333%;
  }
  .tar-row .tar-col.tar-xs-9-half {
    max-width: 79.1666666667%;
  }
  .tar-row .tar-col.tar-xs-10-half {
    max-width: 87.5%;
  }
}
@media (min-width: 576px) {
  .tar-row .tar-col.tar-sm-1 {
    max-width: 8.3333333333%;
  }
  .tar-row .tar-col.tar-sm-2 {
    max-width: 16.6666666667%;
  }
  .tar-row .tar-col.tar-sm-3 {
    max-width: 25%;
  }
  .tar-row .tar-col.tar-sm-4 {
    max-width: 33.3333333333%;
  }
  .tar-row .tar-col.tar-sm-5 {
    max-width: 41.6666666667%;
  }
  .tar-row .tar-col.tar-sm-6 {
    max-width: 50%;
  }
  .tar-row .tar-col.tar-sm-7 {
    max-width: 58.3333333333%;
  }
  .tar-row .tar-col.tar-sm-8 {
    max-width: 66.6666666667%;
  }
  .tar-row .tar-col.tar-sm-9 {
    max-width: 75%;
  }
  .tar-row .tar-col.tar-sm-10 {
    max-width: 83.3333333333%;
  }
  .tar-row .tar-col.tar-sm-11 {
    max-width: 91.6666666667%;
  }
  .tar-row .tar-col.tar-sm-12 {
    max-width: 100%;
  }
  .tar-row .tar-col.tar-sm-1-half {
    max-width: 12.5%;
  }
  .tar-row .tar-col.tar-sm-2-half {
    max-width: 20.8333333333%;
  }
  .tar-row .tar-col.tar-sm-3-half {
    max-width: 29.1666666667%;
  }
  .tar-row .tar-col.tar-sm-4-half {
    max-width: 37.5%;
  }
  .tar-row .tar-col.tar-sm-5-half {
    max-width: 45.8333333333%;
  }
  .tar-row .tar-col.tar-sm-6-half {
    max-width: 54.1666666667%;
  }
  .tar-row .tar-col.tar-sm-7-half {
    max-width: 62.5%;
  }
  .tar-row .tar-col.tar-sm-8-half {
    max-width: 70.8333333333%;
  }
  .tar-row .tar-col.tar-sm-9-half {
    max-width: 79.1666666667%;
  }
  .tar-row .tar-col.tar-sm-10-half {
    max-width: 87.5%;
  }
}
@media (min-width: 768px) {
  .tar-row .tar-col.tar-md-1 {
    max-width: 8.3333333333%;
  }
  .tar-row .tar-col.tar-md-2 {
    max-width: 16.6666666667%;
  }
  .tar-row .tar-col.tar-md-3 {
    max-width: 25%;
  }
  .tar-row .tar-col.tar-md-4 {
    max-width: 33.3333333333%;
  }
  .tar-row .tar-col.tar-md-5 {
    max-width: 41.6666666667%;
  }
  .tar-row .tar-col.tar-md-6 {
    max-width: 50%;
  }
  .tar-row .tar-col.tar-md-7 {
    max-width: 58.3333333333%;
  }
  .tar-row .tar-col.tar-md-8 {
    max-width: 66.6666666667%;
  }
  .tar-row .tar-col.tar-md-9 {
    max-width: 75%;
  }
  .tar-row .tar-col.tar-md-10 {
    max-width: 83.3333333333%;
  }
  .tar-row .tar-col.tar-md-11 {
    max-width: 91.6666666667%;
  }
  .tar-row .tar-col.tar-md-12 {
    max-width: 100%;
  }
  .tar-row .tar-col.tar-md-1-half {
    max-width: 12.5%;
  }
  .tar-row .tar-col.tar-md-2-half {
    max-width: 20.8333333333%;
  }
  .tar-row .tar-col.tar-md-3-half {
    max-width: 29.1666666667%;
  }
  .tar-row .tar-col.tar-md-4-half {
    max-width: 37.5%;
  }
  .tar-row .tar-col.tar-md-5-half {
    max-width: 45.8333333333%;
  }
  .tar-row .tar-col.tar-md-6-half {
    max-width: 54.1666666667%;
  }
  .tar-row .tar-col.tar-md-7-half {
    max-width: 62.5%;
  }
  .tar-row .tar-col.tar-md-8-half {
    max-width: 70.8333333333%;
  }
  .tar-row .tar-col.tar-md-9-half {
    max-width: 79.1666666667%;
  }
  .tar-row .tar-col.tar-md-10-half {
    max-width: 87.5%;
  }
}
@media (min-width: 992px) {
  .tar-row .tar-col.tar-lg-1 {
    max-width: 8.3333333333%;
  }
  .tar-row .tar-col.tar-lg-2 {
    max-width: 16.6666666667%;
  }
  .tar-row .tar-col.tar-lg-3 {
    max-width: 25%;
  }
  .tar-row .tar-col.tar-lg-4 {
    max-width: 33.3333333333%;
  }
  .tar-row .tar-col.tar-lg-5 {
    max-width: 41.6666666667%;
  }
  .tar-row .tar-col.tar-lg-6 {
    max-width: 50%;
  }
  .tar-row .tar-col.tar-lg-7 {
    max-width: 58.3333333333%;
  }
  .tar-row .tar-col.tar-lg-8 {
    max-width: 66.6666666667%;
  }
  .tar-row .tar-col.tar-lg-9 {
    max-width: 75%;
  }
  .tar-row .tar-col.tar-lg-10 {
    max-width: 83.3333333333%;
  }
  .tar-row .tar-col.tar-lg-11 {
    max-width: 91.6666666667%;
  }
  .tar-row .tar-col.tar-lg-12 {
    max-width: 100%;
  }
  .tar-row .tar-col.tar-lg-1-half {
    max-width: 12.5%;
  }
  .tar-row .tar-col.tar-lg-2-half {
    max-width: 20.8333333333%;
  }
  .tar-row .tar-col.tar-lg-3-half {
    max-width: 29.1666666667%;
  }
  .tar-row .tar-col.tar-lg-4-half {
    max-width: 37.5%;
  }
  .tar-row .tar-col.tar-lg-5-half {
    max-width: 45.8333333333%;
  }
  .tar-row .tar-col.tar-lg-6-half {
    max-width: 54.1666666667%;
  }
  .tar-row .tar-col.tar-lg-7-half {
    max-width: 62.5%;
  }
  .tar-row .tar-col.tar-lg-8-half {
    max-width: 70.8333333333%;
  }
  .tar-row .tar-col.tar-lg-9-half {
    max-width: 79.1666666667%;
  }
  .tar-row .tar-col.tar-lg-10-half {
    max-width: 87.5%;
  }
}
@media (min-width: 1200px) {
  .tar-row .tar-col.tar-xl-1 {
    max-width: 8.3333333333%;
  }
  .tar-row .tar-col.tar-xl-2 {
    max-width: 16.6666666667%;
  }
  .tar-row .tar-col.tar-xl-3 {
    max-width: 25%;
  }
  .tar-row .tar-col.tar-xl-4 {
    max-width: 33.3333333333%;
  }
  .tar-row .tar-col.tar-xl-5 {
    max-width: 41.6666666667%;
  }
  .tar-row .tar-col.tar-xl-6 {
    max-width: 50%;
  }
  .tar-row .tar-col.tar-xl-7 {
    max-width: 58.3333333333%;
  }
  .tar-row .tar-col.tar-xl-8 {
    max-width: 66.6666666667%;
  }
  .tar-row .tar-col.tar-xl-9 {
    max-width: 75%;
  }
  .tar-row .tar-col.tar-xl-10 {
    max-width: 83.3333333333%;
  }
  .tar-row .tar-col.tar-xl-11 {
    max-width: 91.6666666667%;
  }
  .tar-row .tar-col.tar-xl-12 {
    max-width: 100%;
  }
  .tar-row .tar-col.tar-xl-1-half {
    max-width: 12.5%;
  }
  .tar-row .tar-col.tar-xl-2-half {
    max-width: 20.8333333333%;
  }
  .tar-row .tar-col.tar-xl-3-half {
    max-width: 29.1666666667%;
  }
  .tar-row .tar-col.tar-xl-4-half {
    max-width: 37.5%;
  }
  .tar-row .tar-col.tar-xl-5-half {
    max-width: 45.8333333333%;
  }
  .tar-row .tar-col.tar-xl-6-half {
    max-width: 54.1666666667%;
  }
  .tar-row .tar-col.tar-xl-7-half {
    max-width: 62.5%;
  }
  .tar-row .tar-col.tar-xl-8-half {
    max-width: 70.8333333333%;
  }
  .tar-row .tar-col.tar-xl-9-half {
    max-width: 79.1666666667%;
  }
  .tar-row .tar-col.tar-xl-10-half {
    max-width: 87.5%;
  }
}
@media (min-width: 1400px) {
  .tar-row .tar-col.tar-xxl-1 {
    max-width: 8.3333333333%;
  }
  .tar-row .tar-col.tar-xxl-2 {
    max-width: 16.6666666667%;
  }
  .tar-row .tar-col.tar-xxl-3 {
    max-width: 25%;
  }
  .tar-row .tar-col.tar-xxl-4 {
    max-width: 33.3333333333%;
  }
  .tar-row .tar-col.tar-xxl-5 {
    max-width: 41.6666666667%;
  }
  .tar-row .tar-col.tar-xxl-6 {
    max-width: 50%;
  }
  .tar-row .tar-col.tar-xxl-7 {
    max-width: 58.3333333333%;
  }
  .tar-row .tar-col.tar-xxl-8 {
    max-width: 66.6666666667%;
  }
  .tar-row .tar-col.tar-xxl-9 {
    max-width: 75%;
  }
  .tar-row .tar-col.tar-xxl-10 {
    max-width: 83.3333333333%;
  }
  .tar-row .tar-col.tar-xxl-11 {
    max-width: 91.6666666667%;
  }
  .tar-row .tar-col.tar-xxl-12 {
    max-width: 100%;
  }
  .tar-row .tar-col.tar-xxl-1-half {
    max-width: 12.5%;
  }
  .tar-row .tar-col.tar-xxl-2-half {
    max-width: 20.8333333333%;
  }
  .tar-row .tar-col.tar-xxl-3-half {
    max-width: 29.1666666667%;
  }
  .tar-row .tar-col.tar-xxl-4-half {
    max-width: 37.5%;
  }
  .tar-row .tar-col.tar-xxl-5-half {
    max-width: 45.8333333333%;
  }
  .tar-row .tar-col.tar-xxl-6-half {
    max-width: 54.1666666667%;
  }
  .tar-row .tar-col.tar-xxl-7-half {
    max-width: 62.5%;
  }
  .tar-row .tar-col.tar-xxl-8-half {
    max-width: 70.8333333333%;
  }
  .tar-row .tar-col.tar-xxl-9-half {
    max-width: 79.1666666667%;
  }
  .tar-row .tar-col.tar-xxl-10-half {
    max-width: 87.5%;
  }
}
.tar-row .tar-col.cols-1 {
  max-width: 100%;
}
.tar-row .tar-col.cols-2 {
  max-width: 50%;
}
.tar-row .tar-col.cols-3 {
  max-width: 33.3333333333%;
}
.tar-row .tar-col.cols-4 {
  max-width: 25%;
}

/* 
   ===========================================
   pacing logic for grids 
   ===========================================
*/
.tar-mlr-0 {
  margin-left: 0;
  margin-right: 0;
}

.tar-mt-0 {
  margin-top: 0;
}

.tar-mb-0 {
  margin-bottom: 0;
}

.tar-ml-0 {
  margin-left: 0;
}

.tar-mr-0 {
  margin-right: 0;
}

.tar-plr-0 {
  padding-left: 0;
  padding-right: 0;
}

.tar-ptb-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.tar-padding-top-0 {
  padding-top: 0;
}

.tar-padding-bottom-0 {
  padding-bottom: 0;
}

.tar-padding-0 {
  padding: 0;
}

.tar-gap-0 {
  gap: 0;
}

.tar-mlr-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.tar-mlr--1 {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.tar-mt--1 {
  margin-top: -0.25rem;
}

.tar-mt-1 {
  margin-top: 0.25rem;
}

.tar-mb-1 {
  margin-bottom: 0.25rem;
}

.tar-ml-1 {
  margin-left: 0.25rem;
}

.tar-mr-1 {
  margin-right: 0.25rem;
}

.tar-plr-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.tar-ptb-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.tar-padding-top-1 {
  padding-top: 0.25rem;
}

.tar-padding-bottom-1 {
  padding-bottom: 0.25rem;
}

.tar-padding-1 {
  padding: 0.25rem;
}

.tar-gap-1 {
  gap: 0.25rem;
}

.tar-mlr-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.tar-mlr--2 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.tar-mt--2 {
  margin-top: -0.5rem;
}

.tar-mt-2 {
  margin-top: 0.5rem;
}

.tar-mb-2 {
  margin-bottom: 0.5rem;
}

.tar-ml-2 {
  margin-left: 0.5rem;
}

.tar-mr-2 {
  margin-right: 0.5rem;
}

.tar-plr-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.tar-ptb-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.tar-padding-top-2 {
  padding-top: 0.5rem;
}

.tar-padding-bottom-2 {
  padding-bottom: 0.5rem;
}

.tar-padding-2 {
  padding: 0.5rem;
}

.tar-gap-2 {
  gap: 0.5rem;
}

.tar-mlr-3 {
  margin-left: 0.63rem;
  margin-right: 0.63rem;
}

.tar-mlr--3 {
  margin-left: -0.63rem;
  margin-right: -0.63rem;
}

.tar-mt--3 {
  margin-top: -0.63rem;
}

.tar-mt-3 {
  margin-top: 0.63rem;
}

.tar-mb-3 {
  margin-bottom: 0.63rem;
}

.tar-ml-3 {
  margin-left: 0.63rem;
}

.tar-mr-3 {
  margin-right: 0.63rem;
}

.tar-plr-3 {
  padding-left: 0.63rem;
  padding-right: 0.63rem;
}

.tar-ptb-3 {
  padding-top: 0.63rem;
  padding-bottom: 0.63rem;
}

.tar-padding-top-3 {
  padding-top: 0.63rem;
}

.tar-padding-bottom-3 {
  padding-bottom: 0.63rem;
}

.tar-padding-3 {
  padding: 0.63rem;
}

.tar-gap-3 {
  gap: 0.63rem;
}

.tar-mlr-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.tar-mlr--4 {
  margin-left: -1rem;
  margin-right: -1rem;
}

.tar-mt--4 {
  margin-top: -1rem;
}

.tar-mt-4 {
  margin-top: 1rem;
}

.tar-mb-4 {
  margin-bottom: 1rem;
}

.tar-ml-4 {
  margin-left: 1rem;
}

.tar-mr-4 {
  margin-right: 1rem;
}

.tar-plr-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.tar-ptb-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.tar-padding-top-4 {
  padding-top: 1rem;
}

.tar-padding-bottom-4 {
  padding-bottom: 1rem;
}

.tar-padding-4 {
  padding: 1rem;
}

.tar-gap-4 {
  gap: 1rem;
}

.tar-mlr-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.tar-mlr--5 {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

.tar-mt--5 {
  margin-top: -1.25rem;
}

.tar-mt-5 {
  margin-top: 1.25rem;
}

.tar-mb-5 {
  margin-bottom: 1.25rem;
}

.tar-ml-5 {
  margin-left: 1.25rem;
}

.tar-mr-5 {
  margin-right: 1.25rem;
}

.tar-plr-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.tar-ptb-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.tar-padding-top-5 {
  padding-top: 1.25rem;
}

.tar-padding-bottom-5 {
  padding-bottom: 1.25rem;
}

.tar-padding-5 {
  padding: 1.25rem;
}

.tar-gap-5 {
  gap: 1.25rem;
}

.tar-mlr-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.tar-mlr--6 {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.tar-mt--6 {
  margin-top: -1.5rem;
}

.tar-mt-6 {
  margin-top: 1.5rem;
}

.tar-mb-6 {
  margin-bottom: 1.5rem;
}

.tar-ml-6 {
  margin-left: 1.5rem;
}

.tar-mr-6 {
  margin-right: 1.5rem;
}

.tar-plr-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.tar-ptb-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.tar-padding-top-6 {
  padding-top: 1.5rem;
}

.tar-padding-bottom-6 {
  padding-bottom: 1.5rem;
}

.tar-padding-6 {
  padding: 1.5rem;
}

.tar-gap-6 {
  gap: 1.5rem;
}

.tar-mlr-7 {
  margin-left: 1.88rem;
  margin-right: 1.88rem;
}

.tar-mlr--7 {
  margin-left: -1.88rem;
  margin-right: -1.88rem;
}

.tar-mt--7 {
  margin-top: -1.88rem;
}

.tar-mt-7 {
  margin-top: 1.88rem;
}

.tar-mb-7 {
  margin-bottom: 1.88rem;
}

.tar-ml-7 {
  margin-left: 1.88rem;
}

.tar-mr-7 {
  margin-right: 1.88rem;
}

.tar-plr-7 {
  padding-left: 1.88rem;
  padding-right: 1.88rem;
}

.tar-ptb-7 {
  padding-top: 1.88rem;
  padding-bottom: 1.88rem;
}

.tar-padding-top-7 {
  padding-top: 1.88rem;
}

.tar-padding-bottom-7 {
  padding-bottom: 1.88rem;
}

.tar-padding-7 {
  padding: 1.88rem;
}

.tar-gap-7 {
  gap: 1.88rem;
}

.tar-mlr-8 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.tar-mlr--8 {
  margin-left: -3rem;
  margin-right: -3rem;
}

.tar-mt--8 {
  margin-top: -3rem;
}

.tar-mt-8 {
  margin-top: 3rem;
}

.tar-mb-8 {
  margin-bottom: 3rem;
}

.tar-ml-8 {
  margin-left: 3rem;
}

.tar-mr-8 {
  margin-right: 3rem;
}

.tar-plr-8 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.tar-ptb-8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.tar-padding-top-8 {
  padding-top: 3rem;
}

.tar-padding-bottom-8 {
  padding-bottom: 3rem;
}

.tar-padding-8 {
  padding: 3rem;
}

.tar-gap-8 {
  gap: 3rem;
}

.tar-mlr-9 {
  margin-left: 6rem;
  margin-right: 6rem;
}

.tar-mlr--9 {
  margin-left: -6rem;
  margin-right: -6rem;
}

.tar-mt--9 {
  margin-top: -6rem;
}

.tar-mt-9 {
  margin-top: 6rem;
}

.tar-mb-9 {
  margin-bottom: 6rem;
}

.tar-ml-9 {
  margin-left: 6rem;
}

.tar-mr-9 {
  margin-right: 6rem;
}

.tar-plr-9 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.tar-ptb-9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.tar-padding-top-9 {
  padding-top: 6rem;
}

.tar-padding-bottom-9 {
  padding-bottom: 6rem;
}

.tar-padding-9 {
  padding: 6rem;
}

.tar-gap-9 {
  gap: 6rem;
}

.tar-mlr-10 {
  margin-left: 9.38rem;
  margin-right: 9.38rem;
}

.tar-mlr--10 {
  margin-left: -9.38rem;
  margin-right: -9.38rem;
}

.tar-mt--10 {
  margin-top: -9.38rem;
}

.tar-mt-10 {
  margin-top: 9.38rem;
}

.tar-mb-10 {
  margin-bottom: 9.38rem;
}

.tar-ml-10 {
  margin-left: 9.38rem;
}

.tar-mr-10 {
  margin-right: 9.38rem;
}

.tar-plr-10 {
  padding-left: 9.38rem;
  padding-right: 9.38rem;
}

.tar-ptb-10 {
  padding-top: 9.38rem;
  padding-bottom: 9.38rem;
}

.tar-padding-top-10 {
  padding-top: 9.38rem;
}

.tar-padding-bottom-10 {
  padding-bottom: 9.38rem;
}

.tar-padding-10 {
  padding: 9.38rem;
}

.tar-gap-10 {
  gap: 9.38rem;
}

.tar-mlr-11 {
  margin-left: 12rem;
  margin-right: 12rem;
}

.tar-mlr--11 {
  margin-left: -12rem;
  margin-right: -12rem;
}

.tar-mt--11 {
  margin-top: -12rem;
}

.tar-mt-11 {
  margin-top: 12rem;
}

.tar-mb-11 {
  margin-bottom: 12rem;
}

.tar-ml-11 {
  margin-left: 12rem;
}

.tar-mr-11 {
  margin-right: 12rem;
}

.tar-plr-11 {
  padding-left: 12rem;
  padding-right: 12rem;
}

.tar-ptb-11 {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.tar-padding-top-11 {
  padding-top: 12rem;
}

.tar-padding-bottom-11 {
  padding-bottom: 12rem;
}

.tar-padding-11 {
  padding: 12rem;
}

.tar-gap-11 {
  gap: 12rem;
}

.tar-mlr-12 {
  margin-left: 12.5rem;
  margin-right: 12.5rem;
}

.tar-mlr--12 {
  margin-left: -12.5rem;
  margin-right: -12.5rem;
}

.tar-mt--12 {
  margin-top: -12.5rem;
}

.tar-mt-12 {
  margin-top: 12.5rem;
}

.tar-mb-12 {
  margin-bottom: 12.5rem;
}

.tar-ml-12 {
  margin-left: 12.5rem;
}

.tar-mr-12 {
  margin-right: 12.5rem;
}

.tar-plr-12 {
  padding-left: 12.5rem;
  padding-right: 12.5rem;
}

.tar-ptb-12 {
  padding-top: 12.5rem;
  padding-bottom: 12.5rem;
}

.tar-padding-top-12 {
  padding-top: 12.5rem;
}

.tar-padding-bottom-12 {
  padding-bottom: 12.5rem;
}

.tar-padding-12 {
  padding: 12.5rem;
}

.tar-gap-12 {
  gap: 12.5rem;
}

.tar-mlr-13 {
  margin-left: 13rem;
  margin-right: 13rem;
}

.tar-mlr--13 {
  margin-left: -13rem;
  margin-right: -13rem;
}

.tar-mt--13 {
  margin-top: -13rem;
}

.tar-mt-13 {
  margin-top: 13rem;
}

.tar-mb-13 {
  margin-bottom: 13rem;
}

.tar-ml-13 {
  margin-left: 13rem;
}

.tar-mr-13 {
  margin-right: 13rem;
}

.tar-plr-13 {
  padding-left: 13rem;
  padding-right: 13rem;
}

.tar-ptb-13 {
  padding-top: 13rem;
  padding-bottom: 13rem;
}

.tar-padding-top-13 {
  padding-top: 13rem;
}

.tar-padding-bottom-13 {
  padding-bottom: 13rem;
}

.tar-padding-13 {
  padding: 13rem;
}

.tar-gap-13 {
  gap: 13rem;
}

.tar-mlr-14 {
  margin-left: 14rem;
  margin-right: 14rem;
}

.tar-mlr--14 {
  margin-left: -14rem;
  margin-right: -14rem;
}

.tar-mt--14 {
  margin-top: -14rem;
}

.tar-mt-14 {
  margin-top: 14rem;
}

.tar-mb-14 {
  margin-bottom: 14rem;
}

.tar-ml-14 {
  margin-left: 14rem;
}

.tar-mr-14 {
  margin-right: 14rem;
}

.tar-plr-14 {
  padding-left: 14rem;
  padding-right: 14rem;
}

.tar-ptb-14 {
  padding-top: 14rem;
  padding-bottom: 14rem;
}

.tar-padding-top-14 {
  padding-top: 14rem;
}

.tar-padding-bottom-14 {
  padding-bottom: 14rem;
}

.tar-padding-14 {
  padding: 14rem;
}

.tar-gap-14 {
  gap: 14rem;
}

.tar-mlr-15 {
  margin-left: 15rem;
  margin-right: 15rem;
}

.tar-mlr--15 {
  margin-left: -15rem;
  margin-right: -15rem;
}

.tar-mt--15 {
  margin-top: -15rem;
}

.tar-mt-15 {
  margin-top: 15rem;
}

.tar-mb-15 {
  margin-bottom: 15rem;
}

.tar-ml-15 {
  margin-left: 15rem;
}

.tar-mr-15 {
  margin-right: 15rem;
}

.tar-plr-15 {
  padding-left: 15rem;
  padding-right: 15rem;
}

.tar-ptb-15 {
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.tar-padding-top-15 {
  padding-top: 15rem;
}

.tar-padding-bottom-15 {
  padding-bottom: 15rem;
}

.tar-padding-15 {
  padding: 15rem;
}

.tar-gap-15 {
  gap: 15rem;
}

/*
   ===========================================
   Ordering utilities for responsive layouts
   ===========================================
*/
@media (max-width: 369px) {
  .tar-order-xs-1 {
    order: 1;
  }
  .tar-order-xs-2 {
    order: 2;
  }
  .tar-order-xs-3 {
    order: 3;
  }
}
@media (max-width: 575px) {
  .tar-order-sm-1 {
    order: 1;
  }
  .tar-order-sm-2 {
    order: 2;
  }
  .tar-order-sm-3 {
    order: 3;
  }
}
@media (max-width: 767px) {
  .tar-order-md-1 {
    order: 1;
  }
  .tar-order-md-2 {
    order: 2;
  }
  .tar-order-md-3 {
    order: 3;
  }
}
@media (max-width: 991px) {
  .tar-order-lg-1 {
    order: 1;
  }
  .tar-order-lg-2 {
    order: 2;
  }
  .tar-order-lg-3 {
    order: 3;
  }
}
@media (max-width: 1199px) {
  .tar-order-xl-1 {
    order: 1;
  }
  .tar-order-xl-2 {
    order: 2;
  }
  .tar-order-xl-3 {
    order: 3;
  }
}
@media (max-width: 1399px) {
  .tar-order-xxl-1 {
    order: 1;
  }
  .tar-order-xxl-2 {
    order: 2;
  }
  .tar-order-xxl-3 {
    order: 3;
  }
}
/* 
   ===========================================
   Display/visibility helpers 
   ===========================================
*/
@media (max-width: 369px) {
  .tar-hide-xs {
    display: none !important;
  }
}
@media (min-width: 370px) {
  .tar-hide-xs-down {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .tar-hide-sm {
    display: none !important;
  }
}
@media (min-width: 576px) {
  .tar-hide-sm-down {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .tar-hide-md {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .tar-hide-md-down {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .tar-hide-lg {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .tar-hide-lg-down {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .tar-hide-xl {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .tar-hide-xl-down {
    display: none !important;
  }
}
@media (max-width: 1399px) {
  .tar-hide-xxl {
    display: none !important;
  }
}
@media (min-width: 1400px) {
  .tar-hide-xxl-down {
    display: none !important;
  }
}
/* -----------------------------------------------------------------------------
   03. ELEMENTS
   ----------------------------------------------------------------------------- */
/* 
   ===========================================
   Form elements and states 
   ===========================================
*/
input[type="checkbox"],
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea,
select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="datetime-local"],
input[type="week"],
input[type="file"] {
  display: block;
  cursor: text;
  line-height: inherit;
  letter-spacing: 0.25px;
  padding: 10px;
  outline: 0;
  background: var(--color-primary-bg);
  color: var(--color-primary);
  font-size: var(--text-size-md);
  border-radius: 5px;
}
textarea::-moz-placeholder,
select::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="date"]::-moz-placeholder,
input[type="month"]::-moz-placeholder,
input[type="time"]::-moz-placeholder,
input[type="datetime-local"]::-moz-placeholder,
input[type="week"]::-moz-placeholder,
input[type="file"]::-moz-placeholder {
  color: var(--color-primary);
}
textarea::placeholder,
select::placeholder,
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="tel"]::placeholder,
input[type="url"]::placeholder,
input[type="search"]::placeholder,
input[type="number"]::placeholder,
input[type="date"]::placeholder,
input[type="month"]::placeholder,
input[type="time"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="week"]::placeholder,
input[type="file"]::placeholder {
  color: var(--color-primary);
}
textarea:not(.tar-disable-border),
select:not(.tar-disable-border),
input[type="text"]:not(.tar-disable-border),
input[type="email"]:not(.tar-disable-border),
input[type="password"]:not(.tar-disable-border),
input[type="tel"]:not(.tar-disable-border),
input[type="url"]:not(.tar-disable-border),
input[type="search"]:not(.tar-disable-border),
input[type="number"]:not(.tar-disable-border),
input[type="date"]:not(.tar-disable-border),
input[type="month"]:not(.tar-disable-border),
input[type="time"]:not(.tar-disable-border),
input[type="datetime-local"]:not(.tar-disable-border),
input[type="week"]:not(.tar-disable-border),
input[type="file"]:not(.tar-disable-border) {
  border: 1px solid var(--color-border);
}
textarea:not(.tar-disable-border):focus,
select:not(.tar-disable-border):focus,
input[type="text"]:not(.tar-disable-border):focus,
input[type="email"]:not(.tar-disable-border):focus,
input[type="password"]:not(.tar-disable-border):focus,
input[type="tel"]:not(.tar-disable-border):focus,
input[type="url"]:not(.tar-disable-border):focus,
input[type="search"]:not(.tar-disable-border):focus,
input[type="number"]:not(.tar-disable-border):focus,
input[type="date"]:not(.tar-disable-border):focus,
input[type="month"]:not(.tar-disable-border):focus,
input[type="time"]:not(.tar-disable-border):focus,
input[type="datetime-local"]:not(.tar-disable-border):focus,
input[type="week"]:not(.tar-disable-border):focus,
input[type="file"]:not(.tar-disable-border):focus {
  border-color: var(--color-secondary);
}

select {
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 35px;
  background-image: url(../icons/tar-arrow-bottom.svg);
  cursor: pointer;
}

input[type="file"] {
  transition: border-color 0.25s ease-in-out;
  cursor: pointer;
}
input[type="file"]::file-selector-button {
  padding: 10px;
  font-size: 12px;
  border-width: 0;
  border-radius: 5px;
  background-color: var(--color-primary);
  color: var(--color-white);
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  margin-right: 1em;
}
input[type="file"]:hover::file-selector-button {
  opacity: 0.9;
}

input[type="color"] {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 3px;
}

input[type="checkbox"],
input[type="radio"] {
  width: 1.2rem;
  height: 1.2rem;
  vertical-align: middle;
  background-color: var(--color-primary-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  box-shadow: var(--header-shadow);
}

input[type="checkbox"]:not(.tar-switcher):checked {
  background-image: url(../icons/tar-checked.svg);
  background-color: var(--color-secondary);
}

input[type="checkbox"].tar-switcher {
  width: 2em;
  transition: all 0.15s ease-in-out;
  border-radius: 1em;
  background-image: url(../icons/tar-circle.svg);
  background-position: 0 center;
}

input[type="checkbox"].tar-switcher:checked {
  background-position: right center;
  background-color: var(--color-secondary);
  background-image: url(../icons/tar-circle-white.svg);
}

.tar-form-inline {
  border: 1px solid var(--color-border);
  padding: 5px; /* old WebKit */ /* IE10 */
  flex-wrap: wrap;
  border-radius: 10px;
  display: -moz-flex;
  display: flex;
}
.tar-form-inline .tar-input-form {
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  background-color: var(--color-transparent);
}
.tar-form-inline .tar-submit-form {
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 7px;
}
.tar-form-inline:focus-within {
  border-color: var(--color-border-secondary);
}
.tar-form-inline.tar-sm input {
  width: 160px;
  margin-right: auto;
}
@media (max-width: 575px) {
  .tar-form-inline .tar-submit-form {
    width: 100%;
  }
}

.tar-dropzone {
  width: 100%;
  height: auto;
  border: 1px dashed var(--color-border);
  background-color: var(--color-gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.tar-dropzone.dragover {
  background: var(--color-gray-50);
}

.tar-dropzone p {
  margin: 0;
  text-align: center;
  color: var(--color-gray-500);
}
.tar-dropzone p a {
  color: var(--color-secondary);
}
.tar-dropzone p .fc-icon {
  font-size: 25px;
  display: block;
  margin-bottom: 10px;
}

.tar-preview-featured-img {
  display: none;
  max-width: 100%;
  border-radius: 10px;
}

.tar-field-block {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  flex-wrap: wrap; /* old WebKit */ /* IE10 */
  align-items: center;
  gap: 1rem;
}
.tar-field-block label {
  /* IE10 */
  flex-basis: 120px;
}
.tar-field-block input,
.tar-field-block select,
.tar-field-block textarea {
  max-width: 100%;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
}

input[type="range"] {
  width: 250px;
  height: 4px;
  background: var(--color-border);
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--color-basic);
  border-radius: 50%;
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--color-basic);
  border-radius: 50%;
  cursor: pointer;
}

/*USER LOGIN / REGISTER FORM MODULE */
.tar-user-form {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 30px;
  background: var(--color-primary-bg);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
@media (max-width: 575px) {
  .tar-user-form {
    padding: 20px;
  }
}
.tar-user-form {
  /*FORM WRAPPER */
}
.tar-user-form form {
  display: -moz-flex;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.tar-user-form form label {
  font-size: var(--text-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
  margin-bottom: 3px;
}
.tar-user-form form input[type="text"],
.tar-user-form form input[type="email"],
.tar-user-form form input[type="password"] {
  width: 100%;
}
.tar-user-form {
  /*REMEMBER ME + FORGOT */
}
.tar-user-form .tar-flex.tar-between {
  align-items: center;
  display: flex;
}
.tar-user-form .tar-flex.tar-between .tar-checkbox-container {
  display: flex;
  align-items: center;
  gap: 6px;
}
.tar-user-form .tar-flex.tar-between .tar-checkbox-container span {
  font-size: var(--text-size-sm);
  color: var(--color-primary);
}
.tar-user-form .tar-flex.tar-between .tar-forgot-link {
  font-size: var(--text-size-sm);
  color: var(--color-secondary);
  text-decoration: none;
  margin-left: auto;
}
.tar-user-form .tar-flex.tar-between .tar-forgot-link:hover {
  color: var(--color-hover);
}
.tar-user-form .tar-container span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: var(--text-size-sm);
  color: var(--color-gray-600);
}
.tar-user-form button {
  width: 100%;
}
.tar-user-form {
  /* SOCIAL LOGIN */
}
.tar-user-form .tar-social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tar-user-form .tar-social-login .tar-btn-google,
.tar-user-form .tar-social-login .tar-btn-apple {
  background: var(--color-gray-50);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
}
.tar-user-form .tar-social-login .tar-btn-google img,
.tar-user-form .tar-social-login .tar-btn-apple img {
  width: 18px;
  height: 18px;
  display: inline-block;
}
.tar-user-form .tar-social-login .tar-btn-google:hover,
.tar-user-form .tar-social-login .tar-btn-apple:hover {
  background: var(--color-gray-100);
}
.tar-user-form {
  /* REGISTER MESSAGE */
}
.tar-user-form .tar-text-center {
  text-align: center;
  font-size: var(--text-size-sm);
  color: var(--color-gray-600);
}
.tar-user-form .tar-text-center a.tar-link {
  color: var(--color-secondary);
  text-decoration: none;
  margin-left: 5px;
}
.tar-user-form .tar-text-center a.tar-link:hover {
  color: var(--color-hover);
}

/* 
   ===========================================
   Links, hover states, focus states
   ===========================================
*/
a:hover {
  color: var(--color-hover);
}

/* 
   ===========================================
   Button styles and variants 
   ===========================================   
*/
.tar-btn,
a.tar-btn,
input[type="reset"],
input[type="submit"],
input[type="button"],
button {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  padding: 8px 20px;
  font-size: inherit;
  line-height: var(--line-height-base);
  color: var(--btn-text);
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  border-radius: 0.25rem;
  -webkit-user-select: text; /* Safari */
  -moz-user-select: text; /* Firefox */ /* IE10 */
  -o-user-select: text; /* Opera */
  user-select: text;
  transition: all 0.4s ease-in-out;
}
.tar-btn:hover,
a.tar-btn:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
button:hover {
  background: var(--btn-bg-hover);
  color: var(--btn-text-hover);
  border: 1px solid var(--btn-border-hover);
  opacity: 0.85;
  transform: none;
}

.tar-btn-xs {
  padding: 0.4rem 0.6rem;
  font-size: 11px;
  line-height: 1.25;
}

.tar-btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: var(--text-size-lg);
  line-height: 1.25;
}

.tar-btn-md {
  padding: 0.375rem 0.75rem;
  font-size: var(--text-size-xl);
  line-height: 1.5;
}

.tar-btn-lg {
  padding: 0.5rem 1rem;
  font-size: var(--text-size-2xl);
  line-height: 1.75;
}

.tar-btn-xl {
  padding: 0.75rem 1.5rem;
  font-size: var(--text-size-4xl);
  line-height: 2;
}

.tar-btn-primary {
  --btn-text: var(--color-white);
  --btn-border: var(--color-secondary);
  --btn-bg: var(--color-secondary);
  --btn-bg-hover: var(--color-secondary-thick);
  --btn-text-hover: var(--color-white);
  --btn-border-hover: var(--color-secondary);
}

.tar-btn-secondary {
  --btn-text: var(--color-white);
  --btn-bg: var(--color-primary);
}

.tar-btn-success {
  --btn-text: var(--color-white);
  --btn-border: var(--color-success);
  --btn-bg: var(--color-success);
  --btn-bg-hover: var(--color-success);
  --btn-text-hover: var(--color-white);
  --btn-border-hover: var(--color-success);
}

.tar-btn-danger {
  --btn-text: var(--color-white);
  --btn-border: var(--color-danger);
  --btn-bg: var(--color-danger);
  --btn-bg-hover: var(--color-danger);
  --btn-text-hover: var(--color-white);
  --btn-border-hover: var(--color-danger);
}

.tar-float-button {
  position: fixed;
  padding: 5px 10px;
  z-index: 10;
  right: 20px;
  bottom: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    visibility 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}
.tar-float-button.tar-show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* 
   ===========================================
   Table layout, alignments, responsive tables
   ===========================================
*/
table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  table-layout: fixed;
}
table .tar-col-expand {
  width: 320px;
  white-space: normal;
  word-break: break-word;
}
table th,
table td {
  border: 1px solid var(--color-border);
  padding: 7px 15px;
  text-align: left;
  white-space: normal;
}
table td .tar-stat-row {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  justify-content: center; /* old WebKit */ /* IE10 */
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--color-gray-500);
}
table td .tar-stat-row .fc-icon {
  margin-right: 5px;
}
table td:not(:last-child) .tar-stat-row {
  margin-bottom: 5px;
}

.tar-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tar-table-wrapper::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.tar-table-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.tar-table-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 0px;
}
.tar-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

.tar-tbl-odds-evens tbody tr:nth-child(odd) {
  background-color: var(--color-odd-row);
}
.tar-tbl-odds-evens tbody tr:nth-child(even) {
  background-color: var(--color-even-row);
}

.tar-table-header-style thead tr th,
.tar-table-header-style thead tr td {
  background-color: var(--color-basic);
  color: var(--color-white);
}

.tar-table-bordered-header thead tr {
  border-bottom: 3px solid var(--color-primary);
}

.tar-col-title {
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  padding: 20px;
}

.tar-col-title h4,
.tar-col-title a {
  white-space: normal;
  word-break: break-word;
}
.tar-col-title h4 img,
.tar-col-title a img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

/* -----------------------------------------------------------------------------
   04. PARTS
   ----------------------------------------------------------------------------- */
/* 
   ===========================================
   Breadcrumb UI styles 
   ===========================================   
*/
.tar-breadcrumbs {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  flex-wrap: wrap;
  gap: 12px;
}
.tar-breadcrumbs li a,
.tar-breadcrumbs li span,
.tar-breadcrumbs li:after {
  color: var(--color-gray-600);
  font-size: 11px;
}
.tar-breadcrumbs li a:hover {
  color: var(--color-primary);
}
.tar-breadcrumbs li:not(:last-child)::after {
  font-family: "flatcoding-icons";
  content: "\e801";
  margin-left: 12px;
}
.tar-breadcrumbs li span {
  color: var(--color-gray-500);
}

/* 
   ===========================================
   Rating stars and score UI
   ===========================================
*/
.tar-reviews {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  flex-wrap: wrap;
  gap: 5px;
}
.tar-reviews.tar-read-only {
  opacity: 0.85;
  gap: 2px;
  pointer-events: none;
}
.tar-reviews.tar-read-only span {
  font-size: var(--text-size-md);
}
.tar-reviews span {
  color: var(--color-gray-500);
  cursor: pointer;
}
.tar-reviews span:before {
  width: 22px;
  content: "\e825";
}

.tar-reviews[data-filled="1"] span:nth-child(-n + 1)::before {
  content: "\e824";
  color: var(--color-secondary);
}

.tar-reviews[data-filled="2"] span:nth-child(-n + 2)::before {
  content: "\e824";
  color: var(--color-secondary);
}

.tar-reviews[data-filled="3"] span:nth-child(-n + 3)::before {
  content: "\e824";
  color: var(--color-secondary);
}

.tar-reviews[data-filled="4"] span:nth-child(-n + 4)::before {
  content: "\e824";
  color: var(--color-secondary);
}

.tar-reviews[data-filled="5"] span:nth-child(-n + 5)::before {
  content: "\e824";
  color: var(--color-secondary);
}

.tar-reviews[data-filled-hover="1"] span:nth-child(-n + 1)::before,
.tar-reviews[data-filled-hover="2"] span:nth-child(-n + 2)::before,
.tar-reviews[data-filled-hover="3"] span:nth-child(-n + 3)::before,
.tar-reviews[data-filled-hover="4"] span:nth-child(-n + 4)::before,
.tar-reviews[data-filled-hover="5"] span:nth-child(-n + 5)::before {
  color: var(--color-secondary);
  content: "\e825";
}

/*
   ===========================================
   Content formatting
   ===========================================
*/
.tar-blog-post-title {
  margin-top: 0.5rem;
}

.tar-post-categories {
  margin-top: 1.5rem;
  display: -moz-flex;
  display: flex;
  gap: 12px;
}
.tar-post-categories li a {
  background-color: var(--color-higlighted);
  padding: 4px 7px;
  border-radius: 5px;
  display: block;
  font-size: 14px;
}

.tar-inline-post-meta {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
  gap: 15px;
  margin-top: 1.5rem;
}
.tar-inline-post-meta > li:nth-child(2) {
  margin-left: auto;
}

.tar-blog-post-thumbnail {
  margin-top: 1.5rem;
  display: block;
  width: 100%;
  border-radius: 10px;
}

.tar-post-content {
  --font-weight-medium: 600;
  font-size: var(--text-size-md);
}
.tar-post-content img {
  border-radius: 10px;
}
.tar-post-content .tar-full-img {
  width: 100%;
}
.tar-post-content figure,
.tar-post-content p,
.tar-post-content table,
.tar-post-content audio,
.tar-post-content video,
.tar-post-content .tar-gallery,
.tar-post-content > ul,
.tar-post-content > ol {
  padding-bottom: 1.7rem;
}
.tar-post-content p a,
.tar-post-content ul > li > a {
  color: var(--color-secondary);
  font-weight: 500;
  text-decoration: underline;
}
.tar-post-content > h1,
.tar-post-content > h2,
.tar-post-content > h3,
.tar-post-content > h4,
.tar-post-content > h5,
.tar-post-content > h6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.tar-post-content blockquote {
  margin: 0 0 16px;
  padding: 20px 24px;
  border-left: 4px solid var(--color-primary);
  background: var(--color-gray-100);
  font-size: 18px;
  line-height: 1.6;
}
.tar-post-content figure blockquote p {
  margin: 0;
}
.tar-post-content figure figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.tar-post-content figure figcaption img {
  border-radius: 50%;
  display: block;
}
.tar-post-content figure figcaption a {
  font-weight: 600;
}
.tar-post-content figure figcaption span:last-child {
  opacity: 0.6;
}
.tar-post-content pre {
  margin: 24px 0;
  padding: 16px;
  background: var(--color-black);
  border-radius: 6px;
  overflow-x: auto;
  color: var(--color-white);
}
.tar-post-content pre code {
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 14px;
  line-height: 1.6;
  display: block;
  white-space: pre;
}
.tar-post-content iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 6px;
  margin: 24px 0;
}
.tar-post-content audio {
  width: 100%;
  margin: 24px 0;
  display: block;
}
.tar-post-content video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  margin: 24px 0;
}
.tar-post-content > ul:not(.tar-posts-lists) {
  list-style-type: disc;
  padding-left: 24px;
  margin: 16px 0;
}
.tar-post-content > ul:not(.tar-posts-lists) li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.tar-post-content > ul:not(.tar-posts-lists) li::marker {
  color: var(--color-primary);
}
.tar-post-content > ol {
  list-style-type: decimal;
  padding-left: 24px;
  margin: 16px 0;
}
.tar-post-content > ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.tar-post-content > ol ul ul,
.tar-post-content > ol ol ol,
.tar-post-content > ol ul ol,
.tar-post-content > ol ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 20px;
}

.tar-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}
.tar-gallery figure {
  padding: 0;
  margin: 0;
}
.tar-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.tar-gallery figure:last-child {
  grid-column: span 2;
}
.tar-gallery.tar-cols-5 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
@media (max-width: 767px) {
  .tar-gallery.tar-cols-5 {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
@media (max-width: 767px) {
  .tar-gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .tar-gallery figure:last-child {
    grid-column: span 2;
  }
}

.tar-social-share-container > span {
  font-weight: 600;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  margin-bottom: 0.8rem;
  display: block;
}
.tar-social-share-container .tar-social-share {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
  gap: 0.5rem;
}
.tar-social-share-container .tar-social-share li {
  list-style: none;
}
.tar-social-share-container .tar-social-share li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  color: var(--color-white);
}
.tar-social-share-container .tar-social-share li a .fc-icon {
  font-size: 1rem;
  line-height: 1;
}
.tar-social-share-container .tar-social-share li a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.tar-blog-post-tags {
  --text-size-sm: 0.7rem;
}

.tar-rating-container {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
}
.tar-rating-container ul li {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  justify-content: space-between;
}
.tar-rating-container ul li:not(:last-child) {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
}

.tar-next-prev .tar-post-thumbnail {
  max-height: 110px;
}

.tar-separator {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.tar-comments {
  display: block;
  width: 100%;
}
.tar-comments li:not(:last-child)::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  margin: 3rem auto;
  display: block;
}
.tar-comments li.tar-comment-child {
  margin-left: 50px;
  position: relative;
}
.tar-comments li.tar-comment-child .tar-comment-author-thumb {
  position: relative;
}
.tar-comments li.tar-comment-child .tar-comment-author-thumb::before {
  content: "";
  background-color: var(--color-border);
  width: 20px;
  height: 3px;
  position: absolute;
  left: -20px;
  top: 30px;
}
.tar-comments li.tar-comment-child .tar-comment-author-thumb::after {
  content: "";
  background-color: var(--color-border);
  width: 3px;
  height: 50px;
  position: absolute;
  left: -20px;
  top: -20px;
}
@media (max-width: 767px) {
  .tar-comments li.tar-comment-child {
    margin-left: 20px;
  }
}
.tar-comments li .tar-comment-block {
  display: -moz-flex;
  display: flex;
  gap: 15px;
}
.tar-comments li .tar-comment-block .tar-comment-author-thumb {
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}
.tar-comments li .tar-comment-block .tar-comment-author-thumb img {
  border-radius: 50%;
  border: 5px solid var(--color-border);
}
.tar-comments li .tar-comment-block .tar-author-name,
.tar-comments li .tar-comment-block p {
  margin-bottom: 1.5rem;
}
.tar-comments li .tar-comment-block .tar-author-name {
  padding-top: 10px;
}
.tar-comments li .tar-comment-block p {
  font-size: 15px;
}
.tar-single-cover {
  --color-gray-600: var(--color-white);
  --color-higlighted: var(--color-basic);
  --color-hover: var(--color-gray-600-dark);
  --color-gray-500: var(--color-gray-600-dark);
  --color-secondary: var(--color-cover-rating-color);
  --color-primary: var(--color-gray-600-dark);
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  color: var(--color-white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}
.tar-single-cover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background-color: var(--color-single-cover);
  z-index: -1;
}

/* 
   ===========================================
   Pagination layouts 
   ===========================================
*/
.tar-paginiation {
  display: -moz-flex;
  display: flex;
  gap: 10px; /* old WebKit */ /* IE10 */
  justify-content: center; /* old WebKit */ /* IE10 */
  align-items: center; /* old WebKit */ /* IE10 */
  flex-wrap: wrap;
}
.tar-paginiation li a {
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  box-shadow: var(--header-shadow);
}
.tar-paginiation li a:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
}

/* 
   ===========================================
   Color utilities and classes 
   ===========================================
*/
.tar-bg-facebook {
  background-color: #3b5998;
  color: var(--color-white);
}

.tar-bg-twitter-x {
  background-color: #14171a;
  color: var(--color-white);
}

.tar-bg-youtube {
  background-color: #ff0000;
  color: var(--color-white);
}

.tar-bg-youtube-play {
  background-color: #ff0000;
  color: var(--color-white);
}

.tar-bg-instagram {
  background-color: #c32aa3;
  color: var(--color-white);
}

.tar-bg-tiktok {
  background-color: #010101;
  color: var(--color-white);
}

.tar-bg-dribbble {
  background-color: #ea4c89;
  color: var(--color-white);
}

.tar-bg-behance {
  background-color: #1769ff;
  color: var(--color-white);
}

.tar-bg-whatsapp {
  background-color: #25d366;
  color: var(--color-white);
}

.tar-bg-pinterest {
  background-color: #bd081c;
  color: var(--color-white);
}

.tar-bg-linkedin {
  background-color: #0a66c2;
  color: var(--color-white);
}

/* 
   ===========================================
   Owl Carousel integration styles 
   ===========================================
*/
.tar-owl-inline,
.tar-video-hero-slider {
  position: relative;
}
.tar-owl-inline.owl-carousel .owl-nav,
.tar-video-hero-slider.owl-carousel .owl-nav {
  margin: 0;
}
.tar-owl-inline.owl-carousel .owl-nav button.owl-prev,
.tar-owl-inline.owl-carousel .owl-nav button.owl-next,
.tar-video-hero-slider.owl-carousel .owl-nav button.owl-prev,
.tar-video-hero-slider.owl-carousel .owl-nav button.owl-next {
  background-color: var(--color-thick);
  position: absolute;
  top: calc(50% - 13px);
  width: 25px;
  height: 35px;
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  justify-content: center; /* old WebKit */ /* IE10 */
  align-items: center;
  opacity: 0;
  visibility: hidden;
}
.tar-owl-inline.owl-carousel .owl-nav button.owl-prev,
.tar-video-hero-slider.owl-carousel .owl-nav button.owl-prev {
  left: -30px;
}
.tar-owl-inline.owl-carousel .owl-nav button.owl-next,
.tar-video-hero-slider.owl-carousel .owl-nav button.owl-next {
  right: -30px;
}
.tar-owl-inline.owl-carousel:hover .owl-nav button.owl-prev,
.tar-video-hero-slider.owl-carousel:hover .owl-nav button.owl-prev {
  left: -12px;
  opacity: 1;
  visibility: visible;
}
.tar-owl-inline.owl-carousel:hover .owl-nav button.owl-next,
.tar-video-hero-slider.owl-carousel:hover .owl-nav button.owl-next {
  right: -12px;
  opacity: 1;
  visibility: visible;
}

.tar-banner-slider .owl-dots .owl-dot {
  margin-top: 20px;
}

.tar-banner-slider .owl-dots .owl-dot span,
.tar-banner-slider .owl-dots .owl-dot:hover span {
  background-color: var(--color-border);
}

.tar-banner-slider .owl-dots .owl-dot.active span {
  background-color: var(--color-secondary);
  width: 25px !important;
  margin: 0 5px !important;
}

/* 
   ===========================================
   Light/Dark mode styles 
   ===========================================
*/
.tar-mode-toggle {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
}

.tar-mode-toggle span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

/* Dark mode active */
html[data-mode="dark"] .tar-mode-toggle span:first-child {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
}
html[data-mode="dark"] .tar-mode-toggle span:last-child {
  opacity: 0;
  z-index: 1;
  transform: scale(0.8);
}
html[data-mode="dark"] {
  /* DARK MODE VARIABLE MAPPING */
  --color-thick: var(--color-thick-dark);
  --color-white: var(--color-white-dark);
  --color-black: var(--color-black-dark);
  --color-single-cover: var(--color-gray-50);
  --color-primary: var(--color-primary-dark);
  --color-primary-bg: var(--color-primary-bg-dark);
  --color-secondary: var(--color-secondary-dark);
  --color-secondary-thick: var(--color-secondary-thick-dark);
  --color-higlighted: var(--color-higlighted-dark);
  --color-hover: var(--color-hover-dark);
  --color-gray-25: var(--color-gray-25-dark);
  --color-gray-50: var(--color-gray-50-dark);
  --color-gray-100: var(--color-gray-100-dark);
  --color-gray-200: var(--color-gray-200-dark);
  --color-gray-300: var(--color-gray-300-dark);
  --color-gray-400: var(--color-gray-400-dark);
  --color-gray-500: var(--color-gray-500-dark);
  --color-gray-600: var(--color-gray-600-dark);
  --color-gray-700: var(--color-gray-700-dark);
  --color-gray-800: var(--color-gray-800-dark);
  --color-success: var(--color-success-dark);
  --color-danger: var(--color-danger-dark);
  --color-rating: var(--color-rating-dark);
  --color-border: var(--color-border-thick);
  --color-border-thick: var(--color-border-dark);
  --color-border-secondary: var(--color-border-secondary-dark);
  --color-odd-row: var(--color-odd-row-dark);
  --color-even-row: var(--color-even-row-dark);
  --color-box-shadow: var(--color-box-shadow-dark);
  --color-transparent: var(--color-transparent-dark);
  --color-overlay: var(--color-overlay-dark);
  --color-secondary-light-rgba: var(--color-secondary-light-rgba-dark);
  --color-trend-icon: var(--color-trend-icon-dark);
  --color-meta: var(--color-meta-dark);
  --color-event-date-bg: var(--color-event-date-bg-dark);
  --color-badge-bg: var(--color-badge-bg-dark);
  /* Buttons */
  --btn-text: var(--btn-text-dark);
  --btn-bg: var(--btn-bg-dark);
  --btn-bg-hover: var(--btn-bg-hover-dark);
  --btn-border: var(--btn-border-dark);
  --btn-border-hover: var(--btn-border-hover-dark);
  --btn-gradient: var(--btn-gradient-dark);
  /* Header */
  --header-bg: var(--header-bg-dark);
  --nav-text-color: var(--nav-text-color-dark);
  --nav-text-hover: var(--nav-text-hover-dark);
  --dropdown-bg: var(--dropdown-bg-dark);
  /* Sidebar */
  --sidebar-bg: var(--sidebar-bg-dark);
  --sidebar-text-color: var(--sidebar-text-color-dark);
  /* Blocks / Cards */
  --block-bg: var(--block-bg-dark);
  --float-bg: var(--float-bg-dark);
  --svg-circle: var(--svg-circle-dark);
  --img-overlay: var(--img-overlay-dark);
  --svg-mask: var(--svg-mask-dark);
  /* Modal */
  --modal-bg: var(--modal-bg-dark);
  /* Hero */
  --hero-heading-color: var(--hero-heading-color-dark);
  --hero-highlight: var(--hero-highlight-dark);
  --hero-text-color: var(--hero-text-color-dark);
  --hero-bg: var(--hero-bg-dark);
  --hero-form-bg: var(--hero-form-bg-dark);
  --hero-image: var(--hero-image-dark);
  --hero-leaf: var(--hero-leaf-dark);
  --color-highlight: var(--hero-form-bg-dark);
  --color-basic: var(--color-secondary-thick-dark);
}

/* Light mode active */
html[data-mode="light"] .tar-mode-toggle span:first-child {
  opacity: 0;
  z-index: 1;
  transform: scale(0.8);
}
html[data-mode="light"] .tar-mode-toggle span:last-child {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
}

/* 
   ===========================================
   Product and ecommerce widgets 
   ===========================================
*/
.tar-shopping-cart-list li {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
  gap: 15px;
  position: relative;
  margin-bottom: 15px;
}
.tar-shopping-cart-list li .tar-product-thumbnail {
  width: 80px;
  height: 100px;
  overflow: hidden;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 10px;
}
.tar-shopping-cart-list li .tar-product-thumbnail.tar-sm {
  width: 80px;
  height: 80px;
}
.tar-shopping-cart-list li .tar-product-data {
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
}
.tar-shopping-cart-list li .tar-product-data a {
  font-size: var(--text-size-sm);
  font-weight: 600;
}
.tar-shopping-cart-list li .tar-product-data .tar-price-quantity {
  margin-top: 10px;
  font-size: var(--text-size-sm);
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
  gap: 10px;
}
.tar-shopping-cart-list li .tar-product-data .tar-price-quantity .tar-price {
  font-weight: bold;
  color: var(--color-secondary);
}
.tar-shopping-cart-list li .tar-product-data .tar-price-quantity .tar-quantity {
  max-width: 55px;
  padding: 0;
  text-align: left;
  border-width: 0;
}
.tar-shopping-cart-list
  li
  .tar-product-data
  .tar-price-quantity
  .tar-quantity:focus {
  border-width: 1px;
}
.tar-shopping-cart-list li .tar-item-remover {
  position: absolute;
  background-color: var(--color-secondary-light-rgba);
  color: var(--color-secondary);
  right: 0;
  top: calc(50% - 15px);
  height: 30px;
  width: 30px;
  display: none;
  text-align: center;
  border-radius: 50%; /* old WebKit */ /* IE10 */
  align-items: center; /* old WebKit */ /* IE10 */
  justify-content: center;
  opacity: 0.8;
}
.tar-shopping-cart-list li .tar-item-remover:hover {
  opacity: 1;
}
.tar-shopping-cart-list li:hover .tar-item-remover {
  display: -moz-flex;
  display: flex;
}
.tar-shopping-cart-list.tar-border-with li {
  padding-bottom: 16px;
}
.tar-shopping-cart-list.tar-border-with li:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

/* 
   ===========================================
   Animation helpers 
   ===========================================
*/
.tar-close-handler:hover {
  transform: rotate(90deg);
}

.tar-slideup {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.tar-slideup.tar-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tar-animated-leaf {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 420px;
  height: 420px;
  background: var(--hero-leaf);
  border-radius: 5% 70% 2% 70%;
  transform-origin: top left;
  transform: rotate(50deg);
  animation: tar-scale-leaf 30s ease-in-out infinite;
  z-index: 0;
}
@media (max-width: 767px) {
  .tar-animated-leaf {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 575px) {
  .tar-animated-leaf {
    top: 30%;
    width: 200px;
    height: 200px;
  }
}
@keyframes tar-scale-leaf {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}
/* 
   ===========================================
   Logo styles and containers 
   ===========================================
*/
.tar-logo-container {
  display: block;
  width: var(--logo-sm, 90px);
  height: auto;
  max-height: 50px;
}
.tar-logo-container.tar-sm {
  --logo-sm: var(--logo-xs);
}
.tar-logo-container.tar-md {
  --logo-sm: var(--logo-md);
}
.tar-logo-container.tar-lg {
  --logo-sm: var(--logo-lg);
}
.tar-logo-container.tar-xl {
  --logo-sm: var(--logo-xl);
}

/* 
   ===========================================
   Badges and small UI labels 
   ===========================================
*/
.tar-badge {
  display: inline-block;
  padding: 3px 5px;
  font-size: 10px;
  font-weight: normal;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  text-transform: capitalize;
  background-color: var(--color-badge-bg);
  color: var(--color-white);
  border-radius: 3px;
}

.tar-absolute-badge {
  position: absolute;
  display: block;
  min-width: 20px;
  min-height: 20px;
  border-radius: 50%;
  outline: 2px solid var(--header-bg);
  padding: 0;
  top: 61%;
  left: 50%;
  text-align: center;
  align-content: center;
  z-index: 1;
}

.tar-golden {
  --color-badge-bg: var(--color-basic);
}

.tar-gray {
  --color-badge-bg: var(--color-gray-500);
}

.tar-bg-gray-200 {
  background-color: var(--color-gray-50);
}

/* 
   ===========================================
   Navbars, menus, tabs 
   ===========================================
*/
.tar-nav-item {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  flex-wrap: wrap;
  line-height: inherit;
  height: inherit;
}
.tar-nav-item > li {
  display: -moz-flex;
  display: flex;
  align-items: center;
}
.tar-nav-item > li > a {
  position: relative;
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
  gap: 6px;
  font-weight: var(--nav-text-weight);
  text-transform: var(--nav-text-transform);
  color: var(--nav-text-color);
  font-size: var(--nav-text-size);
  line-height: inherit;
}
.tar-nav-item > li > a:hover {
  color: var(--nav-text-hover);
}

.tar-block-item {
  list-style: none;
  display: -moz-flex;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  line-height: inherit;
}
.tar-block-item li a {
  font-size: var(--nav-text-size); /* old WebKit */ /* IE10 */
  align-items: center;
  display: -moz-flex;
  display: flex;
  transition: padding-left 0.3s ease-in-out;
}

.tar-dropdown-item li a {
  transition: padding-left 0.3s ease-in-out;
  font-weight: var(--dropdown-text-weight);
  font-size: var(--text-size-lg);
}

.tar-has-dropdown-item {
  position: relative;
}
.tar-has-dropdown-item .tar-dropdown-item {
  width: 200px;
}
.tar-has-dropdown-item .tar-dropdown-item .tar-dropdown-item {
  left: 100%;
  top: 0;
}
.tar-has-dropdown-item .tar-dropdown-item li a {
  display: -moz-flex;
  display: flex;
}

.tar-has-dropdown-item .tar-dropdown-item,
.tar-has-megamenu .tar-dropdown-megamenu {
  line-height: var(--line-height-heading);
  position: absolute;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  top: 100%;
  left: 0;
  transform-origin: 0 0;
  z-index: 100;
  background-color: var(--dropdown-bg);
  color: var(--dropdown-text);
  border: 1px solid var(--color-border);
  box-shadow: var(--dropdown-box-shadow);
  transform: scale(1, 0);
  transition: all 0.3s ease-in-out;
}
.tar-has-dropdown-item .tar-dropdown-item.tar-right-position,
.tar-has-megamenu .tar-dropdown-megamenu.tar-right-position {
  left: unset;
  right: 0;
}

.tar-has-dropdown-item:hover > .tar-dropdown-item,
.tar-has-megamenu:hover > .tar-dropdown-megamenu {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.tar-has-slidedown-item a {
  position: relative;
}
.tar-has-slidedown-item .tar-slidedown-item {
  display: none;
}
.tar-has-slidedown-item.open > a::after {
  transform: translateY(0%) rotate(180deg);
}

.tar-has-dropdown-item > a::after,
.tar-has-megamenu > a::after,
.tar-has-slidedown-item > a::after {
  content: "\e800";
  font-family: "flatcoding-icons";
  font-size: 8px;
  line-height: 1;
  margin-left: auto;
  color: var(--nav-text-color);
  transition: all 0.3s ease;
}

.tar-social-icons {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  flex-wrap: wrap;
  gap: 1.7rem;
}
.tar-social-icons li a {
  font-size: 20px;
}
.tar-social-icons.tar-sm {
  gap: 1.2rem;
}
.tar-social-icons.tar-sm li a {
  font-size: 15px;
}
.tar-social-icons.tar-lg {
  gap: 1.9rem;
}
.tar-social-icons.tar-lg li a {
  font-size: 25px;
}
.tar-social-icons.tar-followers li a {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  justify-content: center; /* old WebKit */ /* IE10 */
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.tar-social-icons.tar-followers li a span {
  display: block;
}
.tar-social-icons.tar-followers li a span:first-child {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 25%;
  opacity: 0.93;
}
.tar-social-icons.tar-followers li a span:last-child {
  font-size: var(--text-size-sm);
}
.tar-social-icons.tar-followers li a:hover span:first-child {
  opacity: 1;
}

.tar-inline-list {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  flex-wrap: wrap;
  gap: 10px;
}
.tar-inline-list li a {
  border: 1px solid var(--color-border);
  box-shadow: var(--header-shadow);
  font-size: var(--text-size-sm);
  padding: 7px;
  display: block;
  border-radius: 5px;
  transition:
    border-color 0.2s ease-in-out,
    color 0.2s ease-in-out;
}
.tar-inline-list li a:hover {
  border-color: var(--color-primary);
}

.tar-nav-container {
  line-height: inherit;
  height: inherit;
}

.tar-user-account-menu {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
  gap: 10px;
}
.tar-user-account-menu img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.tar-user-account-menu span {
  display: -moz-flex;
  display: flex;
  flex-direction: column;
}
.tar-user-account-menu b {
  display: block;
  font-size: 12px;
}
.tar-user-account-menu i {
  font-size: 10px;
}
.tar-user-account-menu {
  border-bottom: 1px solid var(--color-border);
  padding: 10px 10px 13px 10px;
}

.tar-dashboard-thumb-icons li a {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
  gap: 8px;
}
.tar-dashboard-thumb-icons .tar-icon {
  font-size: 23px;
}

.tar-post-meta-icons {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  justify-content: space-between;
}
.tar-post-meta-icons li span {
  font-size: 16px;
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
  gap: 5px;
}
.tar-post-meta-icons li .tar-icon {
  font-size: 25px;
}

.tar-author-stats {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  justify-content: center; /* old WebKit */ /* IE10 */
  align-items: center; /* old WebKit */ /* IE10 */
  flex-wrap: wrap;
  gap: 25px;
}
.tar-author-stats li:not(:last-child) {
  border-right: 1px solid var(--color-trend-icon);
  padding-right: 25px;
}
.tar-author-stats i {
  font-size: 18px;
}
.tar-author-stats .tar-stat-count {
  display: block;
  font-size: 12px;
}

.tar-contact-info {
  margin-top: 0.66rem;
}
.tar-contact-info li {
  margin-bottom: 1.66rem;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
  gap: 15px;
}
.tar-contact-info li .fc-icon {
  font-size: 22px;
  background-color: var(--color-basic);
  color: var(--color-white);
  width: 55px;
  height: 55px;
  border-radius: 5px;
}
.tar-contact-info li .tar-information {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  justify-content: center;
  flex-direction: column;
}
.tar-contact-info li .tar-information span {
  color: var(--color-gray-500);
}

/* 
   ===========================================
   Heading utilities 
   ===========================================
*/
.tar-upper-heading {
  text-transform: uppercase;
  position: relative;
}

.tar-double-leafs {
  position: relative;
  display: inline-block;
  padding-left: 22px;
  text-transform: uppercase;
}
.tar-double-leafs::before,
.tar-double-leafs::after {
  content: "";
  position: absolute;
  left: 0;
  border-radius: 0 80% 0 80%;
  zoom: 1.1;
}
.tar-double-leafs::before {
  top: -1px;
  width: 15px;
  height: 20px;
  background-color: var(--color-secondary);
  transform: rotate(40deg);
  outline: 1px solid var(--color-primary-bg);
}
.tar-double-leafs::after {
  top: 6px;
  width: 10px;
  height: 15px;
  background-color: var(--color-hover);
  transform: rotate(0);
  outline: 2px solid var(--color-primary-bg);
}

/* 
   ===========================================
   Block UI components 
   ===========================================
*/
.tar-wrapped-block,
.tar-wrapped-block-shadow {
  width: 100%;
  display: block;
  position: relative;
  background: var(--block-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
}
.tar-wrapped-block:not(.tar-has-highlighted),
.tar-wrapped-block-shadow:not(.tar-has-highlighted) {
  padding: 20px;
}
.tar-wrapped-block .tar-block-header,
.tar-wrapped-block-shadow .tar-block-header {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 0;
}
.tar-wrapped-block .tar-block-header.tar-has-shape,
.tar-wrapped-block-shadow .tar-block-header.tar-has-shape {
  padding-top: 15px;
}
.tar-wrapped-block .tar-block-header.tar-has-shape::before,
.tar-wrapped-block-shadow .tar-block-header.tar-has-shape::before {
  content: "";
  background-image: var(--svg-circle);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: darken;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.2;
}
.tar-wrapped-block .tar-block-header .tar-see-more,
.tar-wrapped-block-shadow .tar-block-header .tar-see-more {
  font-size: var(--text-size-sm);
  text-transform: uppercase;
}
.tar-wrapped-block .tar-block-body,
.tar-wrapped-block-shadow .tar-block-body {
  width: 100%;
  position: relative;
}
.tar-wrapped-block.tar-has-highlighted,
.tar-wrapped-block-shadow.tar-has-highlighted {
  --svg-circle: var(--svg-circle-light);
}
.tar-wrapped-block.tar-has-highlighted .tar-block-header,
.tar-wrapped-block-shadow.tar-has-highlighted .tar-block-header {
  padding: 20px;
  background-color: var(--color-primary);
  border-radius: inherit;
  margin-bottom: unset;
  color: var(--header-bg);
}
.tar-wrapped-block.tar-has-highlighted .tar-block-header .tar-double-leafs,
.tar-wrapped-block-shadow.tar-has-highlighted
  .tar-block-header
  .tar-double-leafs {
  padding-left: 0;
}
.tar-wrapped-block.tar-has-highlighted
  .tar-block-header
  .tar-double-leafs::before,
.tar-wrapped-block.tar-has-highlighted
  .tar-block-header
  .tar-double-leafs::after,
.tar-wrapped-block-shadow.tar-has-highlighted
  .tar-block-header
  .tar-double-leafs::before,
.tar-wrapped-block-shadow.tar-has-highlighted
  .tar-block-header
  .tar-double-leafs::after {
  display: none;
}
.tar-wrapped-block.tar-has-highlighted .tar-meta-text,
.tar-wrapped-block-shadow.tar-has-highlighted .tar-meta-text {
  font-size: var(--text-size-xxs);
  display: block;
}
.tar-wrapped-block.tar-has-highlighted .tar-block-body,
.tar-wrapped-block-shadow.tar-has-highlighted .tar-block-body {
  padding: 10px;
}
.tar-wrapped-block.tar-disable-borders,
.tar-wrapped-block-shadow.tar-disable-borders {
  padding: 0;
  border: none;
}
.tar-wrapped-block.tar-disable-borders .tar-block-header tar-has-shape,
.tar-wrapped-block-shadow.tar-disable-borders .tar-block-header tar-has-shape {
  margin-bottom: 0;
}
.tar-wrapped-block.tar-disable-borders .tar-block-body,
.tar-wrapped-block-shadow.tar-disable-borders .tar-block-body {
  padding: 10px 0px;
}

.tar-wrapped-block-shadow {
  box-shadow: var(--header-shadow);
}

.tar-list-container,
.tar-list-container-w-separator {
  display: block;
  width: 100%;
}
.tar-list-container > li,
.tar-list-container-w-separator > li {
  position: relative;
}

.tar-list-container > li:not(:last-child) {
  padding-bottom: 20px;
}

.tar-list-container-w-separator > li:not(:last-child)::after {
  content: "";
  width: 95%;
  height: 1px;
  background-color: var(--color-border);
  margin: 1.5em auto;
  display: block;
  position: relative;
}
.tar-list-container-w-separator.tar-lg > li:not(:last-child)::after {
  margin: 30px auto;
}

.tar-highlighted-bg {
  background-color: var(--color-gray-50);
}
.tar-highlighted-bg:not(.tar-disable-border) {
  border: 1px solid var(--color-gray-25);
}

.tar-highlighted-head {
  --color-gray-500: var(--color-primary);
  background-color: var(--color-gray-50);
  border-bottom: 1px solid var(--color-gray-25);
}

/* 
   ===========================================
   Stories thumbnails + layout 
   ===========================================
*/
.tar-stories {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  flex-wrap: wrap; /* old WebKit */ /* IE10 */
  justify-content: center;
  gap: 15px;
}
.tar-stories li {
  position: relative;
  width: 125px;
  height: 125px;
}
.tar-stories li a {
  border-radius: 50%;
  display: block;
}
.tar-stories li a img {
  width: inherit;
  height: inherit;
  border-radius: inherit;
}
.tar-stories li .tar-author-thumb {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: 3px solid var(--block-bg);
  position: absolute;
  right: 5%;
  bottom: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .tar-stories li {
    width: 90px;
    height: 90px;
  }
}

/* 
   ===========================================
   Editor blocks, thumbnail layouts 
   ===========================================
*/
.tar-editors-thumbnail {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  flex-wrap: wrap; /* old WebKit */ /* IE10 */
  align-items: center;
  position: relative;
}
.tar-editors-thumbnail li a {
  width: 45px;
  height: 45px;
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center; /* old WebKit */ /* IE10 */
  justify-content: center;
  border-radius: 50%;
  font-size: var(--text-size-xxs);
}
.tar-editors-thumbnail li a img {
  border-radius: inherit;
  outline: 3px solid var(--color-primary);
  width: inherit;
  height: inherit;
}
.tar-editors-thumbnail li a.tar-see-more-editors {
  border-radius: 50%;
  outline: 3px solid var(--color-primary);
  background-color: var(--color-hover);
}
.tar-editors-thumbnail li a:hover {
  color: var(--color-gray-300);
}
.tar-editors-thumbnail li:not(:last-child) {
  margin-right: -15px;
}
.tar-editors-thumbnail.tar-sm li a {
  width: 38px;
  height: 38px;
}
.tar-editors-thumbnail.tar-sm li a img {
  outline: none;
  border: 3px solid var(--color-primary-bg);
}
.tar-editors-thumbnail.tar-sm li:not(:last-child) {
  margin-right: -8px;
}
.tar-editors-thumbnail.tar-md li a {
  width: 60px;
  height: 60px;
}
.tar-editors-thumbnail.tar-md li a img {
  outline: none;
  border: 3px solid var(--color-primary-bg);
}
.tar-editors-thumbnail.tar-md li:not(:last-child) {
  margin-right: -20px;
}

.tar-author-thumbnail img {
  width: inherit;
  height: inherit;
  border-radius: inherit;
}
.tar-author-thumbnail {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0px auto 5px auto;
}

/*
   ===========================================
   Card components 
   ===========================================
*/
.tar-bg-highlight {
  font-size: var(--text-size-xxs);
  padding-left: 12px;
  display: block;
}
.tar-bg-highlight:hover {
  color: inherit;
}
.tar-bg-highlight::before {
  content: "";
  position: absolute;
  background-color: var(--color-border);
  width: 3px;
  height: 3px;
  display: inline-block;
  top: calc(50% - 2px);
  border-radius: 50%;
  left: 5px;
}

.tar-card-float {
  height: 231px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: var(--block-radius);
  z-index: 0;
}
.tar-card-float.tar-md {
  height: 300px;
}
.tar-card-float.tar-lg {
  height: 370px;
}
.tar-card-float.tar-xl {
  height: 452px;
}
.tar-card-float .tar-post-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
  display: block;
}
.tar-card-float .tar-post-thumbnail img {
  position: relative;
  height: 100%;
}
.tar-card-float .tar-post-data {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: var(--color-white);
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  justify-content: space-between;
  flex-direction: column;
}
.tar-card-float .tar-post-data .tar-post-meta-top {
  margin-bottom: auto;
}
.tar-card-float .tar-post-data .tar-trend-icon {
  font-size: 10px;
  background-color: var(--color-trend-icon);
  width: 25px;
  height: 25px;
  border-radius: 5px;
}
.tar-card-float .tar-post-data .tar-post-title {
  margin-bottom: 7px;
}
.tar-card-float .tar-post-data a:hover {
  color: var(--color-white);
  opacity: 0.9;
}
.tar-card-float .tar-circle-play-icon {
  position: absolute;
  z-index: 2;
  top: calc(50% - 18px);
  left: calc(50% - 18px);
  background-color: var(--color-thick);
  width: 36px;
  height: 36px;
  opacity: 0.8;
  border-radius: 50%; /* old WebKit */ /* IE10 */
  align-items: center; /* old WebKit */ /* IE10 */
  justify-content: center;
  display: -moz-flex;
  display: flex;
  transition: opacity 0.2s ease-in-out;
  color: var(--color-white);
}
.tar-card-float:hover .tar-circle-play-icon {
  opacity: 1;
}

.tar-card-inline {
  width: 100%;
  position: relative;
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
  gap: 15px;
}
.tar-card-inline .tar-post-thumbnail {
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 10px;
  width: 110px;
}
.tar-card-inline .tar-post-excerpt {
  color: var(--color-gray-500);
}
.tar-card-inline .tar-post-meta-bottom,
.tar-card-inline .tar-post-title,
.tar-card-inline .tar-post-excerpt {
  margin-top: 10px;
}
.tar-card-inline .tar-post-meta-bottom .tar-badge,
.tar-card-inline .tar-post-meta-top .tar-badge {
  color: var(--color-white);
}
.tar-card-inline .tar-post-meta-bottom .tar-badge:hover,
.tar-card-inline .tar-post-meta-top .tar-badge:hover {
  opacity: 0.95;
}
@media (min-width: 576px) {
  .tar-card-inline.tar-md .tar-post-thumbnail {
    width: 180px;
  }
}
.tar-card-inline.tar-lg {
  gap: 20px;
}
.tar-card-inline.tar-lg .tar-post-thumbnail {
  width: 250px;
}
.tar-card-inline.tar-lg .tar-post-meta-bottom,
.tar-card-inline.tar-lg .tar-post-title,
.tar-card-inline.tar-lg .tar-post-excerpt {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .tar-card-inline.tar-lg {
    gap: 20px;
    flex-direction: column;
  }
  .tar-card-inline.tar-lg .tar-post-thumbnail {
    width: 100%;
  }
  .tar-card-inline.tar-lg .tar-post-meta-bottom,
  .tar-card-inline.tar-lg .tar-post-title,
  .tar-card-inline.tar-lg .tar-post-excerpt {
    margin-top: 15px;
  }
}

.tar-post-excerpt {
  color: var(--color-gray-500);
}

.tar-card-block {
  width: 100%;
  position: relative;
  display: -moz-flex;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--block-bg);
}
.tar-card-block .tar-post-thumbnail {
  width: 100%;
  border-radius: 10px;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}
.tar-card-block .tar-post-meta-bottom,
.tar-card-block .tar-post-title,
.tar-card-block .tar-post-excerpt {
  margin-top: 15px;
}
.tar-card-block .tar-post-meta-top .tar-badge,
.tar-card-block .tar-post-meta-bottom .tar-badge {
  color: var(--color-white);
}
.tar-card-block .tar-post-meta-top .tar-badge:hover,
.tar-card-block .tar-post-meta-bottom .tar-badge:hover {
  opacity: 0.95;
}
.tar-card-block .tar-float-meta {
  position: absolute;
  margin: 20px;
}
.tar-card-block .tar-post-meta-stats {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  justify-content: space-between;
}
.tar-card-block .tar-post-meta-stats li {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center; /* old WebKit */ /* IE10 */
  justify-content: center;
  color: var(--color-gray-500);
}
.tar-card-block .tar-post-meta-stats li .fc-icon {
  font-size: 20px;
}
.tar-card-block .tar-post-meta-stats li .tar-go-to-post-comment i {
  margin-right: 5px;
}
.tar-card-block .tar-post-meta-stats li .tar-go-to-post {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 3px;
  padding: 10px;
  display: -moz-flex;
  display: flex;
}
.tar-card-block .tar-post-meta-stats li .tar-go-to-post:hover {
  color: var(--color-white);
}
.tar-card-block .tar-post-meta-stats li .tar-go-to-post i {
  font-size: 12px;
}
.tar-card-block .tar-read-more {
  color: var(--color-white);
}
.tar-card-block.tar-xs .tar-post-thumbnail {
  max-height: 220px;
}
.tar-card-block.tar-xs {
  gap: 5px;
}
.tar-card-block.tar-xs .tar-post-meta-bottom,
.tar-card-block.tar-xs .tar-post-title,
.tar-card-block.tar-xs .tar-post-excerpt,
.tar-card-block.tar-xs .tar-post-meta-stats,
.tar-card-block.tar-xs .tar-read-more {
  margin-top: 15px;
}
.tar-card-block.tar-md .tar-post-thumbnail {
  max-height: 350px;
}
.tar-card-block.tar-md .tar-post-data {
  padding-left: 30px;
  padding-right: 30px;
}
.tar-card-block.tar-highlighted-card {
  gap: 0px;
}
.tar-card-block.tar-highlighted-card .tar-post-meta-bottom {
  margin-top: -15px;
  flex-direction: column;
}
.tar-card-block.tar-highlighted-card .tar-post-title,
.tar-card-block.tar-highlighted-card .tar-post-excerpt,
.tar-card-block.tar-highlighted-card .tar-post-meta-bottom {
  text-align: center;
}
.tar-card-block.tar-highlighted-card .tar-post-meta-stats {
  padding-top: 15px;
  border-top: 1px solid var(--color-border);
}
.tar-card-block.tar-sm {
  gap: 15px;
}

.tar-card-middle {
  width: 100%;
  position: relative;
  display: -moz-flex;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.tar-card-middle .tar-post-thumbnail {
  width: 100%;
}
.tar-card-middle .tar-post-thumbnail img {
  height: 100%;
}
.tar-card-middle .tar-post-thumbnail {
  border-radius: 10px;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}
.tar-card-middle .tar-post-data-bottom {
  width: 100%;
  position: relative;
  display: -moz-flex;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tar-card-middle .tar-badge {
  color: var(--color-white);
}
.tar-card-middle .tar-badge:hover {
  opacity: 0.95;
}
.tar-card-middle.tar-post-card .tar-post-thumbnail {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.tar-card-middle.tar-post-card .tar-post-thumbnail img {
  width: 100%;
  height: 150px;
}
.tar-card-middle.tar-post-card.tar-with-border {
  border: 1px solid var(--color-border);
  padding: 20px;
  border-radius: 10px;
}
.tar-card-middle.tar-md .tar-post-thumbnail {
  height: 300px;
}

.tar-meta-circle {
  position: relative;
  z-index: 1;
  font-size: var(--text-size-lg);
  color: var(--color-white);
  background-color: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center; /* old WebKit */ /* IE10 */
  justify-content: center;
}

.tar-post-rating {
  font-size: 13px;
  gap: 0.15em;
  color: var(--color-rating);
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  justify-content: center; /* old WebKit */ /* IE10 */
  align-items: center;
}
.tar-post-rating.tar-rating-1 .tar-icon-star:nth-child(-n + 1),
.tar-post-rating.tar-rating-2 .tar-icon-star:nth-child(-n + 2),
.tar-post-rating.tar-rating-3 .tar-icon-star:nth-child(-n + 3),
.tar-post-rating.tar-rating-4 .tar-icon-star:nth-child(-n + 4),
.tar-post-rating.tar-rating-5 .tar-icon-star:nth-child(-n + 5) {
  color: var(--color-secondary);
}

.tar-post-thumbnail {
  z-index: 0;
}
.tar-post-thumbnail::before {
  content: "";
  background: var(--float-bg);
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.tar-trending-icon {
  background-color: var(--color-secondary);
  width: 25px;
  height: 25px;
  position: absolute;
  font-size: 8px;
  border-radius: 50%;
  z-index: 1;
  outline: 3px solid var(--block-bg);
  top: -5px;
  left: -5px;
  color: var(--color-white);
}

.tar-table-post-data {
  padding: 10px;
  width: 100%;
  display: -moz-flex;
  display: flex;
  text-align: left;
  gap: 10px;
}
.tar-table-post-data .tar-post-thumb {
  width: 80px;
  height: 80px;
  display: block;
}
.tar-table-post-data .tar-post-thumb img {
  width: inherit;
  height: inherit;
  border-radius: 10px;
}
.tar-table-post-data .tar-post-thumb {
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}

/* 
   ===========================================
   Hover effects 
   ===========================================
*/
.tar-grayscale-effect a img {
  filter: grayscale(1);
  transition: filter 0.1s linear;
}
.tar-grayscale-effect a:hover img {
  filter: grayscale(0);
}

.tar-zoom-effect a,
.tar-zoom-effect .tar-card-float {
  position: relative;
  overflow: hidden;
}
.tar-zoom-effect a img,
.tar-zoom-effect .tar-card-float img {
  display: block;
  width: 100%;
  transition: transform 0.4s ease;
}
.tar-zoom-effect a:hover img,
.tar-zoom-effect .tar-card-float:hover img {
  transform: scale(1.1);
}

/* 
   ===========================================
   Widgets and modules 
   ===========================================
*/
.tar-about-name-w-thumb {
  width: 100%;
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
  gap: 13px;
}
.tar-about-name-w-thumb .tar-thumbnail {
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 0;
  border-radius: 50%;
}
.tar-about-name-w-thumb .tar-thumbnail img {
  border-radius: inherit;
  width: inherit;
  height: inherit;
  border: 5px solid var(--block-bg);
}
.tar-about-name-w-thumb.tar-blog-post-editor {
  gap: 20px;
}
.tar-about-name-w-thumb.tar-blog-post-editor .tar-thumbnail {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .tar-about-name-w-thumb.tar-blog-post-editor {
    flex-direction: column;
    text-align: center;
  }
  .tar-about-name-w-thumb.tar-blog-post-editor .tar-social-icons {
    /* old WebKit */ /* IE10 */
    justify-content: center;
  }
}
.tar-about-name-w-thumb .tar-name {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  justify-content: center;
  flex-direction: column;
}

.tar-about-paragraph {
  color: var(--color-gray-500);
  margin-top: 15px;
}

.tar-instagram-feeds {
  width: 100%;
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.tar-instagram-feeds li {
  flex: 1;
  position: relative;
  border-radius: 5%;
  overflow: hidden;
}
.tar-instagram-feeds li a {
  width: 100%;
  aspect-ratio: 1/1;
  display: block;
}
.tar-instagram-feeds li a img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 0;
}
.tar-instagram-feeds li a .tar-hover-effect {
  background-color: var(--svg-mask);
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  font-size: 25px;
  color: var(--color-white);
  visibility: hidden;
  opacity: 0;
  transform: scale(0.5);
  transition:
    transform 0.2s ease-in-out,
    visibility 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
}
.tar-instagram-feeds li:hover a .tar-hover-effect {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}
.tar-instagram-feeds:not(.tar-full-wide) li {
  flex: auto;
  width: calc((100% - 30px) / 3);
}

.tar-categories {
  gap: 10px;
  display: -moz-flex;
  display: flex;
  flex-direction: column;
}
.tar-categories li a {
  font-size: 14px;
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
}
.tar-categories li a span:last-child {
  margin-left: auto;
}
.tar-categories li a .tar-icon {
  margin-right: 7px;
}

.tar-upcomming-events {
  display: block;
}
.tar-upcomming-events li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.tar-upcomming-events li:not(:last-child) {
  margin-bottom: 15px;
}
.tar-upcomming-events li .tar-event-data .tar-event-title {
  color: var(--color-primary);
}
.tar-upcomming-events li .tar-event-data .tar-event-location {
  margin-top: 8px;
  display: block;
  font-size: var(--text-size-sm);
  color: var(--color-gray-500);
  position: relative;
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
  gap: 7px;
}
.tar-upcomming-events li .tar-event-data .tar-event-location i {
  font-size: 20px;
}

.tar-event-date {
  width: 70px;
  height: 77px;
  flex-shrink: 0;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: var(--color-primary-bg);
  outline: 1px solid var(--color-border);
}
.tar-event-date::before,
.tar-event-date::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 13px;
  background-color: var(--color-transparent);
  outline: 1px solid var(--color-border);
  background-color: var(--color-primary-bg);
  box-shadow: var(--header-shadow);
  top: -7px;
  border-radius: 10px 10px 10px 10px;
}
.tar-event-date::before {
  left: calc(40% - 3px);
}
.tar-event-date::after {
  left: calc(60% - 3px);
}
.tar-event-date span {
  font-size: 10px;
}
.tar-event-date .tar-event-day {
  font-size: 18px;
  display: block;
  text-align: center;
  color: var(--color-gray-500);
  font-weight: normal;
}
.tar-event-date .tar-event-month {
  color: var(--color-gray-500);
}

.tar-editors-widget {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center; /* old WebKit */ /* IE10 */
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.tar-editors-widget li {
  width: calc(33.3333333333% - 10px);
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center; /* old WebKit */ /* IE10 */
  justify-content: center;
  flex-direction: column;
}
.tar-editors-widget .tar-author-thumbnail {
  display: block;
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.tar-editors-widget .tar-author-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.tar-editors-widget .tar-author-name {
  display: block;
  margin-top: 10px;
  flex: 1;
  text-align: center;
}
.tar-editors-widget .tar-meta-text {
  display: block;
}

.tar-flex-categories {
  width: 50%;
  background-color: var(--color-white);
  height: 230px;
  border: 1px solid var(--color-border-thick);
}

.tar-author-widget {
  outline: 5px solid var(--color-secondary);
  --color-gray-500: var(--color-primary);
}

/* 
   ===========================================
   Collection blocks 
   ===========================================
*/
.tar-block-collection {
  background-color: var(--block-bg);
  border: 1px solid var(--color-border);
  padding: 8px;
  border-radius: 8px;
}
.tar-block-collection .tar-block-collection-title {
  padding: 10px 0px;
  text-align: center;
}
.tar-block-collection a img {
  height: 150px;
  border-radius: 15px;
}
.tar-block-collection .cols-full {
  height: 300px;
  width: 100%;
}
.tar-block-collection:hover {
  border-color: var(--color-secondary);
}

/* 
   ===========================================
   Hero sections 
   ===========================================
*/
.tar-hero {
  position: relative;
  background-color: var(--hero-bg);
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
}
.tar-hero .tar-bg-img {
  background-image: var(--hero-image);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.tar-hero .tar-bg-img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--img-overlay);
  top: 0;
  left: 0;
  z-index: -1;
}
.tar-hero h1 {
  --line-height-heading: 1.3;
  color: var(--hero-heading-color);
}
.tar-hero .tar-text-primary {
  color: var(--hero-highlight);
}
.tar-hero p {
  margin-top: 15px;
  color: var(--hero-text-color);
}
.tar-hero form {
  margin-top: 25px;
  background-color: var(--hero-form-bg);
}

.tar-hero-slider {
  --hero-bg: var(--color-primary-bg);
}

.tar-shape-container {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}
.tar-shape-container::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--img-overlay);
  display: block;
  position: absolute;
}
.tar-shape-container svg {
  width: 250px;
  height: 250px;
}
.tar-shape-container .tar-shap-left {
  top: 5%;
  position: absolute;
  z-index: -1;
  transform: rotate(30deg);
}
.tar-shape-container .tar-shap-right {
  top: 35%;
  position: absolute;
  z-index: -1;
  right: 10%;
  transform: rotate(20deg);
}

/*https://www.figma.com/community/file/1439616114287975005
https://www.figma.com/community/file/1123972204888920970*/
.tar-profile-block {
  /* old WebKit */ /* IE10 */
  align-items: center;
}
.tar-profile-block .tar-profile-thumbnail {
  display: block;
  width: 220px;
  height: 220px;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.tar-profile-block .tar-profile-thumbnail::before {
  background-color: var(--color-secondary);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  border-radius: 90% 5% 90% 5%;
  z-index: -1;
}
.tar-profile-block .tar-profile-thumbnail::after {
  background-color: var(--color-hover);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  border-radius: 90% 5% 90% 5%;
  z-index: -1;
  top: 0;
  transform: rotate(-15deg);
  outline: 5px solid var(--color-primary-bg);
}
.tar-profile-block .tar-profile-thumbnail img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border-radius: 5% 50% 5% 50%;
  outline: 5px solid var(--color-primary-bg);
}
@media (max-width: 767px) {
  .tar-profile-block .tar-profile-thumbnail {
    margin: 0 auto;
  }
}
.tar-profile-block .tar-profile-data {
  gap: 25px;
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center; /* old WebKit */ /* IE10 */
  justify-content: center; /* old WebKit */ /* IE10 */
  flex-wrap: wrap;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}
.tar-profile-block .tar-profile-data li a {
  display: -moz-flex;
  display: flex;
  flex-direction: column; /* old WebKit */ /* IE10 */
  align-items: center;
  font-size: 12px;
}
.tar-profile-block .tar-profile-data li a span:first-child {
  font-size: 16px;
  margin-bottom: 8px;
}
.tar-profile-block .tar-profile-data li:not(:last-child) {
  border-right: 1px solid var(--color-border);
  padding-right: 25px;
}
.tar-profile-block .tar-profile-data li .tar-btn-primary {
  color: var(--color-white);
}
.tar-profile-block .tar-profile-social-links {
  margin-top: 25px;
  padding: 20px 20px;
  background-color: var(--color-primary-bg);
  box-shadow: var(--header-shadow);
  border-radius: 5px;
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  justify-content: space-between; /* old WebKit */ /* IE10 */
  align-items: center; /* old WebKit */ /* IE10 */
  flex-wrap: wrap;
}
.tar-profile-block .tar-profile-social-links .tar-btn-primary {
  color: var(--color-white);
}
@media (max-width: 575px) {
  .tar-profile-block .tar-profile-social-links {
    gap: 25px;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .tar-profile-block {
    padding-top: 0;
  }
  .tar-profile-block .tar-profile-name {
    margin-top: 30px;
  }
  .tar-profile-block .tar-profile-data,
  .tar-profile-block .tar-profile-about,
  .tar-profile-block .tar-profile-name {
    text-align: center;
  }
  .tar-profile-block .tar-profile-data {
    /* old WebKit */ /* IE10 */
    justify-content: center;
  }
}

.tar-block-hero {
  background-color: var(--color-primary-bg);
  box-shadow: var(--header-shadow);
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.tar-shape-in-svg {
  position: absolute;
  width: 500px;
  max-width: 90%;
  height: 100%;
  right: 0;
  top: 0;
  opacity: 0.3;
  background-image: var(--svg-circle);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.tar-note-block {
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: var(--color-highlight);
  padding: 20px;
  border: 1px solid var(--color-border);
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
  border-radius: 10px;
}
.tar-note-block h1 {
  margin-bottom: 15px;
}

.tar-slider-in-hero {
  background-color: var(--color-gray-50);
  border: 1px solid var(--color-gray-25);
  min-height: 500px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.tar-slider-in-hero .tar-card-float .tar-post-data .tar-post-meta-top {
  margin-bottom: 15px;
}
.tar-slider-in-hero .tar-card-float .tar-post-data {
  /* old WebKit */ /* IE10 */
  justify-content: end;
}
.tar-slider-in-hero .owl-theme .owl-dots {
  background-color: var(--color-overlay);
  padding: 5px;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  right: 20px;
  margin: 0 !important;
}
.tar-slider-in-hero .owl-theme .owl-dots button {
  margin: 0;
}
@media (max-width: 767px) {
  .tar-slider-in-hero .tar-col:last-child {
    margin-top: 10px;
    border-top: 1px solid var(--color-border);
  }
  .tar-slider-in-hero .tar-post-data {
    padding: 1rem;
  }
  .tar-slider-in-hero .tar-upcomming-events li {
    margin-top: 10px;
  }
}

/* 
   ===========================================
   Map integration UI 
   ===========================================
*/
.tar-map-container {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  padding-top: 300px;
  margin-top: 50px;
  margin-bottom: 50px;
  border-radius: 30px;
}
.tar-map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 
   ===========================================
   Shop list, product styles 
   ===========================================
*/
.tar-shop-item {
  position: relative;
}
.tar-shop-item .tar-product-thumb {
  width: 100%;
  margin-bottom: 10px;
  display: block;
  position: relative;
  z-index: 0;
}
.tar-shop-item .tar-product-thumb img {
  border-radius: 5px;
  width: 100%;
  transition: transform 0.3s ease;
}
.tar-shop-item .tar-product-thumb .tar-add-to-cart {
  background-color: var(--color-basic);
  opacity: 0;
  color: var(--color-white);
  display: -moz-flex;
  display: flex;
  border-radius: 5px;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 2;
  width: 50px;
  height: 50px;
  font-size: 18px;
  /* smooth animate */
  transform: scale(0.7);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.tar-shop-item {
  /* hover effects */
}
.tar-shop-item:hover .tar-product-thumb .tar-add-to-cart {
  opacity: 1;
  transform: scale(1);
}

.tar-filters .tar-filter-block {
  margin-bottom: 25px;
}
.tar-filters .tar-filter-block input,
.tar-filters .tar-filter-block select {
  width: 100%;
}

/* 
   ===========================================
   Charts UI 
   ===========================================
*/
.tar-views-chart-block {
  width: 100%;
  height: 300px;
}

/* 
   ===========================================
   Events blocks and widgets 
   ===========================================
*/
.tar-event-card {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
  gap: 30px;
}
.tar-event-card .tar-event-image {
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}
.tar-event-card .tar-event-image img {
  border-radius: 10px;
}
@media (max-width: 575px) {
  .tar-event-card {
    flex-direction: column;
  }
}
.tar-event-card .tar-event-info {
  width: 100%;
}

.tar-date-des-container {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
  gap: 14px;
}

.tar-event-data-list {
  display: block;
  width: 100%;
}
.tar-event-data-list li {
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center;
  gap: 10px;
}
.tar-event-data-list li:not(:last-child) {
  margin-bottom: 13px;
}
.tar-event-data-list li .fc-icon {
  width: 40px;
  height: 40px;
  font-size: 18px;
  background-color: var(--color-basic);
  color: var(--color-white);
  border-radius: 5px;
}

/* -----------------------------------------------------------------------------
   05. COMPONENTS
   ----------------------------------------------------------------------------- */
/* 
   ===========================================
   Header layouts and menu structures 
   ===========================================   
*/
.tar-header {
  background-color: var(--header-bg);
  line-height: var(--header-height);
  height: var(--header-height);
  z-index: 100;
  transition: transform 0.2s ease;
  /* animate only transform */
  will-change: transform;
}
.tar-header .tar-nav {
  line-height: inherit;
  height: inherit;
}
.tar-header {
  box-shadow: var(--header-shadow);
}
.tar-header .tar-nav-item {
  gap: var(--header-gap);
}
.tar-header .tar-nav-item > li:hover > a {
  color: var(--color-hover);
}
.tar-header .tar-has-icon {
  --nav-text-size: 18px;
}
.tar-header .tar-block-item li a {
  padding: 11px 0px 5px 0px;
}
.tar-header .tar-mega-heading {
  color: var(--color-gray-800);
}
.tar-header .tar-dropdown-item li a {
  padding: 11px;
  font-size: 75%;
}
.tar-header .tar-dropdown-item li:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}
.tar-header .tar-dropdown-item li:hover {
  background-color: var(--color-gray-100);
}
.tar-header button {
  font-size: 70%;
}
.tar-header .tar-header-thumbnail {
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
.tar-header .tar-header-thumbnail img {
  border-radius: inherit;
  width: inherit;
  height: inherit;
  border: 3px solid var(--color-secondary);
}
.tar-header.tar-header-sm {
  --header-height: 35px;
  --header-height: 35px;
  --logo-sm: 65px;
  --nav-text-size: 12px;
  --header-gap: 1rem;
}
.tar-header.tar-header-sm .tar-has-icon {
  --nav-text-size: 20px;
}
.tar-header.tar-header-sm .tar-badge {
  font-size: 9px;
}
.tar-header.tar-header-sm .tar-header-thumbnail {
  width: 25px;
  height: 25px;
}
.tar-header.tar-header-sm .tar-header-thumbnail img {
  border-width: 2px;
}
.tar-header.tar-header-sm .tar-absolute-badge {
  min-width: 18px;
  min-height: 18px;
}
.tar-header.tar-header-md {
  --header-height: 60px;
  --header-height: 60px;
  --logo-sm: 80px;
  --nav-text-size: 14px;
  --header-gap: 1.7rem;
}
.tar-header.tar-header-md .tar-has-icon {
  --nav-text-size: 15px;
}
.tar-header.tar-header-md .tar-badge {
  font-size: 11px;
}
.tar-header.tar-header-md .tar-header-thumbnail {
  width: 35px;
  height: 35px;
}
.tar-header.tar-header-md .tar-header-thumbnail img {
  border-width: 2px;
}
.tar-header.tar-header-md .tar-absolute-badge {
  min-width: 18px;
  min-height: 18px;
  font-size: 50%;
}
.tar-header.tar-header-lg {
  --header-height: 75px;
  --header-height: 75px;
  --logo-sm: 90px;
  --nav-text-size: 14px;
  --header-gap: 1.7rem;
}
.tar-header.tar-header-lg .tar-has-icon {
  --nav-text-size: 22px;
}
.tar-header.tar-header-lg .tar-badge {
  font-size: 12px;
}
.tar-header.tar-header-lg .tar-header-thumbnail {
  width: 40px;
  height: 40px;
}
.tar-header.tar-header-lg .tar-header-thumbnail img {
  border-width: 3px;
}
.tar-header.tar-header-lg .tar-absolute-badge {
  min-width: 20px;
  min-height: 20px;
}
.tar-header.tar-header-xl {
  --header-height: 100px;
  --header-height: 100px;
  --logo-sm: 120px;
  --nav-text-size: 16px;
  --header-gap: 1.7rem;
}
.tar-header.tar-header-xl .tar-has-icon {
  --nav-text-size: 24px;
}
.tar-header.tar-header-xl .tar-badge {
  font-size: 12px;
}
.tar-header.tar-header-xl .tar-header-thumbnail {
  width: 45px;
  height: 45px;
}
.tar-header.tar-header-xl .tar-header-thumbnail img {
  border-width: 3px;
}
.tar-header.tar-header-xl .tar-absolute-badge {
  min-width: 20px;
  min-height: 20px;
}

.tar-header-fixed {
  position: fixed;
  top: 0;
}

.tar-header--hidden {
  transform: translateY(-100%);
}

.tar-header--visible {
  transform: translateY(0);
}

/* 
   ===========================================
   Footer structure and widgets 
   ===========================================
*/
.tar-footer {
  --color-gray-500: var(--color-primary);
  border-top: 1px solid var(--color-border);
}
.tar-footer .tar-primary-footer {
  padding-top: 30px;
  padding-bottom: 30px;
}
.tar-footer .tar-prefooter {
  padding: 10px;
  border-top: 1px solid var(--color-border);
}
.tar-footer .tar-block-item li a {
  padding-bottom: 4px;
  padding-top: 4px;
}
.tar-footer .tar-social-icons {
  gap: 10px;
}
.tar-footer .tar-social-icons li a {
  width: 35px;
  height: 35px;
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  justify-content: center;
  background-color: var(--color-primary-bg);
  outline: 1px solid var(--color-border);
  font-size: 13px;
  border-radius: 50%;
}

/* 
   ===========================================
   Sidebar layouts (desktop + mobile) 
   ===========================================
*/
.tar-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 201;
  width: 100%;
  height: 100%;
  background-color: var(--sidebar-bg);
  max-width: 100%;
  transition: transform 0.4s ease-in-out;
  transform: translateX(-100%);
  will-change: transform;
}
.tar-sidebar.tar-right-sidebar {
  left: unset;
  right: 0;
  transform: translateX(100%);
}
.tar-sidebar.active-box {
  transform: translateX(0%);
}
.tar-sidebar .tar-sidebar-head,
.tar-sidebar .tar-sidebar-summary {
  gap: 15px;
  padding: 20px 15px;
  border-bottom: 1px solid var(--color-border);
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center; /* old WebKit */ /* IE10 */
  justify-content: space-between;
}
.tar-sidebar .tar-sidebar-head-fluid {
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
  display: -moz-flex;
  display: flex; /* old WebKit */ /* IE10 */
  align-items: center; /* old WebKit */ /* IE10 */
  justify-content: space-between;
}
.tar-sidebar .tar-sidebar-content {
  display: block;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 25px 15px;
  border-bottom: 1px solid var(--color-border);
  -webkit-overflow-scrolling: touch;
}
.tar-sidebar .tar-sidebar-content::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.tar-sidebar .tar-sidebar-content::-webkit-scrollbar-track {
  background: transparent;
}
.tar-sidebar .tar-sidebar-content::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 0px;
}
.tar-sidebar .tar-sidebar-content::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}
.tar-sidebar .tar-block-item {
  padding-left: 7px;
}
.tar-sidebar .tar-block-item li a {
  font-size: var(--sidebar-text-size);
  font-weight: var(--sidebar-text-weight);
  text-decoration: none;
  padding: 8px 0px;
}
.tar-sidebar .tar-block-item li ul li {
  margin-bottom: 5px;
}
.tar-sidebar .tar-block-item li ul li a {
  padding: 5px;
  font-size: 75%;
}

.tar-sidebar-sm {
  width: 200px;
  max-width: 100%;
}

.tar-sidebar-md {
  width: 250px;
  max-width: 100%;
}

.tar-sidebar-lg {
  width: 300px;
  max-width: 100%;
}

.tar-sidebar-xl {
  width: 350px;
  max-width: 100%;
}

.tar-sidebar-xxl {
  width: 400px;
  max-width: 100%;
}

.tar-sidebar-wide {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 767px) {
  .tar-sidebar-mobile-wide {
    width: 100%;
  }
}

/* 
   ===========================================
   Modal windows and overlays 
   ===========================================
*/
.tar-modal {
  background: var(--modal-bg);
  box-shadow: var(--header-shadow);
  top: var(--modal-top);
  width: var(--modal-width);
  position: var(--modal-type);
  padding: 30px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  max-width: 95%;
  z-index: 1002;
  opacity: 0;
  outline: none;
  border-radius: 10px;
  transform: scale(0);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
  will-change: transform, opacity;
}
.tar-modal .tar-modal-head {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
}
.tar-modal.tar-modal-attach {
  --modal-type: absolute;
}
.tar-modal.active-box {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.tar-modal.tar-top-10 {
  --modal-top: 10%;
}
.tar-modal.tar-top-20 {
  --modal-top: 20%;
}
.tar-modal.tar-top-30 {
  --modal-top: 30%;
}
.tar-modal.tar-top-40 {
  --modal-top: 40%;
}
.tar-modal.tar-top-50 {
  --modal-top: 50%;
}
.tar-modal.tar-modal-full {
  height: 100%;
  max-width: 100%;
}
.tar-modal.tar-modal-sm {
  --modal-width: 300px;
}
.tar-modal.tar-modal-md {
  --modal-width: 400px;
}
.tar-modal.tar-modal-lg {
  --modal-width: 500px;
}
.tar-modal.tar-modal-xl {
  --modal-width: 600px;
}
.tar-modal.tar-modal-xxl {
  --modal-width: 700px;
}
.tar-modal.tar-modal-wide {
  --modal-width: 90%;
}
.tar-modal.tar-modal-full {
  --modal-width: 100%;
}

/*# sourceMappingURL=styles.css.map */
