@charset 'utf-8';
/* Table of contents
 ----------------------------------------
 This file contains the styling for the actual theme, this is the file you need to edit to change the look of the theme.
 This files contents are outlined below.
 -- Utils
 - Variables
 - Functions
 - Mixins
 @media all
 -- Base
 - Sanitize
 - Typography resets
 - Fonts
 - Fonticons
 - Base
 - Vars
 - Grid
 -- Vendors
 - Fontawesome
 - Animate
 - Flexslider
 - Magnific
 - Owl
 - justifiedGallery
 - swiper
 - pace
 - animsition
 -- Components
 - Accessibility
 - General
 - Headlines
 - Lists
 - Tables
 -- Layout
 - Stickyanchor
 - Header
 - Keyvisual
 - Main
 - Sidebar
 - Elements
 - Footer
 - Form
 - Mixed
 - Slidepanel
 -- WordPress
 - General
 - Media
 - pages
 - blog
 - single
 - comments
 - widgets
 - postformats
 - shortcodes
 - taxonomies
 - plugins
 - tinymce
 - templates
 - cpt
 - visualcomposer
 -- basic
 -- customer
 @media print
 - Print
 ---------------------------------------- */
/*
 > * + :is(h2, h3, h4, figure, blockquote),
 > :is(figure, blockquote) + * {
 margin-top: calc(var(--vr) * 2);
 }
 */
/*
 @mixin at-least($num) {
 $selector: &;
 $child: nth(nth($selector, -1), -1);
 &:nth-last-child(n + #{$num}),
 &:nth-last-child(n + #{$num}) ~ #{$child} {
 @content;
 }
 }
 */
/*
 @mixin at-most($num) {
 $selector: &;
 $child: nth(nth($selector, -1), -1);
 &:nth-last-child(-n + #{$num}):first-child,
 &:nth-last-child(-n + #{$num}):first-child ~ #{$child} {
 @content;
 }
 }
 */
/*
 @mixin in-between($min, $max) {
 $selector: &;
 $child: nth(nth($selector, -1), -1);
 &:nth-last-child(n + #{$min}):nth-last-child(-n + #{$max}):first-child,
 &:nth-last-child(n + #{$min}):nth-last-child(-n + #{$max}):first-child ~ #{$child} {
 @content;
 }
 }
 */
