
/* Start Global */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--main-light-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--main-purple);
    transition: all .5s linear;
    border-radius: 10px;
    border: 1px solid var(--main-light-grey);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--main-black);
}

::selection {
    background: var(--main-light); /* WebKit/Blink Browsers */
    color: var(--main-black);
}
::-moz-selection {
	background: var(--main-light); /* Gecko Browsers */
	color: var(--main-black);
}

/* Fonts */

p, li, span, div, a, .goth-book {
    font-family: var(--main-text-fam);
}
p, li {margin: 0 0 15px;}
h1, .goth-bold {
    margin: 0 0 15px;
    font-weight: 700;
}
h2, h3, h4 {
    font-family: var(--main-title-fam);
    margin: 0 0 15px;
    font-weight: 500;
}
h5, h6 {
    margin: 0 0 15px;
}
h6 {
    font-size: 14px;
    font-weight: 100;
}

p, li, div, a {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 200;
}

.fs-12 {font-size: 12px;}
.fs-18 {font-size: 18px;}
.fs-20 {font-size: 20px;}
.fs-24 {font-size: 24px;}
.fs-32 {font-size: 32px;}
.fs-48, h2 {font-size: 48px;}
.fs-64, .big-title {font-size: 64px;}
.fs-200 {font-size: 200px;}
h1, .big-title {font-size: 92px;font-weight: 700;}
h1.sm-entry-title, .sm-entry-title.big-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}
h1 em {font-size: 100px;}
.xbig-title {font-size: 200px;font-weight: 700;}

.category-posts h1, .big-title {
    font-family: var(--main-text-fam);
}

.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-700 {font-weight: 700;}

.lh-1 {line-height: 1;}
.lh-12 {line-height: 1.2;}

.font-title {
    font-family: var(--main-title-fam);
}
.font-text {
    font-family: var(--main-text-fam);
}

.indent {
    padding-left: 150px;
    text-indent:-150px;
}
.indent-big {
    padding-left: 40%;
    text-indent: -60%;
}
.ta-left {text-align: left;}
.ta-center {text-align: center;}
.ta-right {text-align: right;}

.italic {font-style: italic;}

/* Colors */

.color-white,
.color-white-all * {
    color: var(--main-white);
}
.black-bg {
    background: var(--main-black);
}
.white-bg {
    background: var(--main-white);
}
.grey-bg {
    background: var(--main-light-grey);
}

/* Grid */

.grid {
    max-width: 1680px;
    display: block;
    margin: 0 auto;
}
.sm-grid {
    max-width: 1400px;
    display: block;
    margin: 0 auto;
}
.xsm-grid {
    max-width: 860px;
    display: block;
    margin: 0 auto;
}
.gutter {
    margin: 0 20px;
}


/* Positioning */

.rel {position: relative;}
.abs {position: absolute;}
.fixed {position: fixed;}

.abs-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.go-right {margin-left: auto;}
.go-center {margin: 0 auto;}

.z-1 {z-index: 1;}
.z-2 {z-index: 2;}
.z-5 {z-index: 5;}
.z-10 {z-index: 10;}
.z-999 {z-index: 999;}
.z-1000 {z-index: 1000;}

.display-none {display: none;}
.display--inline-top {
    display: inline-block;
    vertical-align: top;
}
.display--inline-mid {
    display: inline-block;
    vertical-align: middle;
}
.display--inline-bot {
    display: inline-block;
    vertical-align: bottom;
}
.display--block {display: block;}
.display--grid {display: grid;}
.display--flex {display: flex;}

.top-left {top: 0; left: 0}
.top-right {top: 0; right: 0}

/* Sizing */

.full-width {width: 100%;}
.full-height {height: 100%;}
.max-content {width: max-content;}
.fill-dimentions {width: 100%; height: 100%;}

.va-mid {vertical-align: middle;}
.align-center {align-items: center;}
.align-top {align-items: start;}

.block-20 {width: 20%;}
.block-25 {width: 25%;}
.block-30 {width: 30%;}
.block-33 {width: 33.3333%;}
.block-40 {width: 40%;}
.block-50 {width: 50%;}
.block-60 {width: 60%;}
.block-70 {width: 70%;}
.block-80 {width: 80%;}


.pad-top-50 {padding-top: 50px;}
.pad-top-150 {padding-top: 150px;}
.marg-bot-100 {padding-top: 150px;}

/* Style Classes */

.overflow {overflow: hidden;}
.pe-none {pointer-events: none;}
.main-trans {transition: var(--main-easing);}
.mh-screen {min-height: 100vh;}
.no-margin {margin: 0;}
.margin-bot-50 {margin-bottom: 50px;}

/* Theme Basic Declarations */

.top-pad {padding-top: var(--top-pad);}
.full-screen-width {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
}
.color-burn {mix-blend-mode: color-burn;}

/* Woocommerce Defaults */

del > span,
ins > span {
    display: block;
    line-height: 1;
}

