/**
 * @author Vitali Lupu
 * @copyright Vitali Lupu <mailto:vitaliix@gmail.com>
 */
.arrow-right:after {
    content: ' ';
    border: 0 solid #000000;
    border-right-width: 0.1rem;
    border-bottom-width: 0.1rem;
    display: inline-block;
    padding: 0.3rem;
    margin-bottom: 0.2rem;
    -moz-transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    pointer-events: none;
}
.scroll-horizontal,
.unselectable,
.unselectable *:not(input):not(textarea):not(*[contenteditable=true]),
input[type=button],
input[type=checkbox],
input[type=file],
input[type=image],
input[type=submit],
input[type^='r'] {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Conqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed , supported by Chrome and Opera */
}
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}
.cursor-pointer {
    cursor: pointer;
}
/* [NO PADDING]
 * padding-{type}-{breakpoint}
 * types: no small medium big
 * breakpoints: xs, sm, md, lg, xl and print
 */
.padding-no, .padding-no > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}
.grid-two-row {
    display: grid;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
}

.v-stretch {
    min-height: 100vh;
}
.vertical-middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.vertical-line {
    border-left: 1px solid #492D10;
    height: 90%;
    vertical-align: middle;
    margin-left: 5px;
}
.reset-font {
    text-transform: initial;
    font-weight: initial;
    letter-spacing: initial;
}
.enable {
    pointer-events: auto;
    opacity: 1;
}
.disable {
    pointer-events: none;
    opacity: 0.4;
}
.visible {
    visibility: visible !important;
}
.invisible {
    visibility: hidden !important;
}
.hiding {
    -moz-animation: hiding 0s ease-in 5s forwards;
    -webkit-animation: hiding 0s ease-in 5s forwards;
    -o-animation: hiding 0s ease-in 5s forwards;
    animation: hiding 0s ease-in 5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes hiding {
    to {
        width: 0;
        height: 0;
        overflow: hidden;
    }
}
@-webkit-keyframes hiding {
    to {
        width: 0;
        height: 0;
        visibility: hidden;
    }
}
/*region [Loader]*/
.loader-overlay {
    position: relative;
}
.loader-overlay:before {
    content: ' ';
    background-color: rgba(0, 0, 0, .6);
    border-radius: 6px;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
}
.loader-overlay:after {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
    font-family: 'FontAwesome', sans-serif;
    font-weight: 900;
    content: "\f110";
    color: white;
    position: absolute;
    display: inline-block;
    width: 16px;
    height: 24px;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
}
/*endregion*/
/*region [Text]*/
.align-sub {
    vertical-align: sub !important;
}
.align-baseline {
    vertical-align: baseline !important;
}
.align-top {
    vertical-align: top !important;
}
.align-middle {
    vertical-align: middle !important;
}
.align-bottom {
    vertical-align: bottom !important;
}
.align-text-bottom {
    vertical-align: text-bottom !important;
}
.align-text-top {
    vertical-align: text-top !important;
}
.text-hide-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.text-hide {
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
.text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-justify {
    text-align: justify !important;
}
.text-nowrap {
    white-space: nowrap !important;
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.text-center table{
    margin: 0 auto;
}
.text-lowercase {
    text-transform: lowercase !important;
}
.text-uppercase {
    text-transform: uppercase !important;
}
.text-capitalize {
    text-transform: capitalize !important;
}
.text-light {
    color: #f8f9fa !important;
}
a.text-light:hover, a.text-light:focus {
    color: #dae0e5 !important;
}
.text-dark {
    color: #343a40 !important;
}
a.text-dark:hover, a.text-dark:focus {
    color: #1d2124 !important;
}
.text-black-50 {
    color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}
.text-muted:not(:hover):not(.active),
.text-muted:not(:hover):not(.active) > * {
    color: #6c757d !important;
}
.font-weight-light {
    font-weight: 300 !important;
}
.font-weight-normal {
    font-weight: 400 !important;
}
.font-weight-bold {
    font-weight: 700 !important;
}
.font-italic {
    font-style: italic !important;
}
.size-75 {
    font-size: 75%;
}
.size-50 {
    font-size: 50%;
}
/*endregion*/
/*region [Borders]*/
/*
 * {type}-{position}
 * type: rounded
 * values: none, all, top, left, right, bottom, circle
 */
.rounded-none {
    border-radius: 0 !important;
}
.rounded-all {
    border-radius: 0.25rem !important;
}
.rounded-top {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
}
.rounded-left {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}
.rounded-right {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}
.rounded-circle {
    border-radius: 50% !important;
}
/*endregion*/
/*region [Display]*/
/*
 * d-{breakpoint}-{value}
 * breakpoints: xs, sm, md, lg, xl and print
 * values: none, inline, inline-block, block, table, table-cell, table-row, flex and inline-flex
 */
.d-none {
    display: none !important;
}
.d-inline {
    display: inline !important;
}
.d-inline-block {
    display: inline-block !important;
}
.d-block {
    display: block !important;
}
.d-table {
    display: table !important;
}
.d-table-row {
    display: table-row !important;
}
.d-table-cell {
    display: table-cell !important;
}
.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}
.d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}
/*endregion*/
/*region [Float]*/
/*
 * float-{breakpoint}-{value}
 * breakpoints: xs, sm, md, lg, xl and print
 * values: left, right and none
 */
.float-left {
    float: left !important;
}
.float-right {
    float: right !important;
}
.float-none {
    float: none !important;
}
/*endregion*/
/*region [Position]*/
/* p-{type}-{breakpoint}
 * types: fixed absolute initial
 * breakpoints: xs, sm, md, lg, xl and print
 */
.p-fixed,
.p-fixed-xs,
.p-fixed-sm,
.p-fixed-md,
.p-fixed-lg,
.p-fixed-xl {
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}
.p-fixed {
    position: fixed;
}
#wpadminbar + .p-fixed{
    top: 32px;
}
/*endregion*/
/*region [Scroll]*/
/* scroll-{type}-{breakpoint}
 * types: horizontal vertical
 * breakpoints: xs, sm, md, lg, xl and print
 */
.scroll-horizontal {
    position: relative;
    transition: all 0.2s;
    overflow-y: hidden;
    overflow-x: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    scrollbar-width: thin;
}
/*.scroll-horizontal {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scroll-horizontal::-webkit-scrollbar {
    display: none;
}*/
.scroll-horizontal > * > * {
    white-space: normal;
}
.scroll-horizontal figure {
    display: inline-block;
}
/*region [Style]*/
.scroll-horizontal::-webkit-scrollbar {
    height: .5rem;
    width: .5rem;
}
.scroll-horizontal::-webkit-scrollbar-track {
    background-color: #F0F0F0;
    border-radius: .25rem;
}
.scroll-horizontal::-webkit-scrollbar-thumb {
    background-color: #CDCDCD;
    border: none;
    border-radius: .25rem;
}
.scroll-horizontal::-webkit-scrollbar-thumb:hover {
    background-color: #A6A6A6;
}
.scroll-horizontal::-webkit-scrollbar-thumb:active {
    background-color: #606060;
}
.scroll-horizontal::-webkit-scrollbar-button {
    display: none;
}
/*endregion*/
/*endregion*/
@media print {
    /*region [Display]*/
    .d-none-print {
        display: none !important;
    }
    .d-inline-print {
        display: inline !important;
    }
    .d-inline-block-print {
        display: inline-block !important;
    }
    .d-block-print {
        display: block !important;
    }
    .d-table-print {
        display: table !important;
    }
    .d-table-row-print {
        display: table-row !important;
    }
    .d-table-cell-print {
        display: table-cell !important;
    }
    .d-flex-print {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-inline-flex-print {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
    /*endregion*/
}
@media (min-width: 528px) {
    .p-fixed-xs {
        position: fixed;
    }
    .padding-no-xs, .padding-no-xs > [class^="col-"] {
        padding-right: 0;
        padding-left: 0;
    }
    /*region [Text]*/
    .text-left-xs {
        text-align: left;
    }
    .text-right-xs {
        text-align: right;
    }
    .text-center-xs {
        text-align: center;
    }
    /*endregion*/
    /*region [Display]*/
    .d-none-xs {
        display: none !important;
    }
    .d-inline-xs {
        display: inline !important;
    }
    .d-inline-block-xs {
        display: inline-block !important;
    }
    .d-block-xs {
        display: block !important;
    }
    .d-table-xs {
        display: table !important;
    }
    .d-table-row-xs {
        display: table-row !important;
    }
    .d-table-cell-xs {
        display: table-cell !important;
    }
    .d-flex-xs {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-inline-flex-xs {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
    /*endregion*/
    /*region [Float]*/
    .float-left-xs {
        float: left !important;
    }
    .float-right-xs {
        float: right !important;
    }
    .float-none-xs {
        float: none !important;
    }
    /*endregion*/
}
@media screen and (max-width: 782px){
    #wpadminbar + .p-fixed{
        top: 48px;
    }
}
@media (min-width: 768px) {
    .p-fixed-sm {
        position: fixed;
    }
    .padding-no-sm, .padding-no-sm > [class^="col-"] {
        padding-right: 0;
        padding-left: 0;
    }
    /*region [Text]*/
    .text-left-sm {
        text-align: left;
    }
    .text-right-sm {
        text-align: right;
    }
    .text-center-sm {
        text-align: center;
    }
    /*endregion*/
    /*region [Display]*/
    .d-none-sm {
        display: none !important;
    }
    .d-inline-sm {
        display: inline !important;
    }
    .d-inline-block-sm {
        display: inline-block !important;
    }
    .d-block-sm {
        display: block !important;
    }
    .d-table-sm {
        display: table !important;
    }
    .d-table-row-sm {
        display: table-row !important;
    }
    .d-table-cell-sm {
        display: table-cell !important;
    }
    .d-flex-sm {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-inline-flex-sm {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
    /*endregion*/
    /*region [Float]*/
    .float-left-sm {
        float: left !important;
    }
    .float-right-sm {
        float: right !important;
    }
    .float-none-sm {
        float: none !important;
    }
    /*endregion*/
}
@media (min-width: 992px) {
    .p-fixed-md {
        position: fixed;
    }
    .padding-no-md, .padding-no-md > [class^="col-"] {
        padding-right: 0;
        padding-left: 0;
    }
    /*region [Text]*/
    .text-left-md {
        text-align: left;
    }
    .text-right-md {
        text-align: right;
    }
    .text-center-md {
        text-align: center;
    }
    /*endregion*/
    /*region [Display]*/
    .d-none-md {
        display: none !important;
    }
    .d-inline-md {
        display: inline !important;
    }
    .d-inline-block-md {
        display: inline-block !important;
    }
    .d-block-md {
        display: block !important;
    }
    .d-table-md {
        display: table !important;
    }
    .d-table-row-md {
        display: table-row !important;
    }
    .d-table-cell-md {
        display: table-cell !important;
    }
    .d-flex-md {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-inline-flex-md {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
    /*endregion*/
    /*region [Float]]*/
    .float-left-md {
        float: left !important;
    }
    .float-right-md {
        float: right !important;
    }
    .float-none-md {
        float: none !important;
    }
    /*endregion*/
}
@media (min-width: 1200px) {
    .p-fixed-lg {
        position: fixed;
    }
    .padding-no-lg, .padding-no-lg > [class^="col-"] {
        padding-right: 0;
        padding-left: 0;
    }
    /*region [Text]*/
    .text-left-lg {
        text-align: left;
    }
    .text-right-lg {
        text-align: right;
    }
    .text-center-lg {
        text-align: center;
    }
    /*endregion*/
    /*region [Display]*/
    .d-none-lg {
        display: none !important;
    }
    .d-inline-lg {
        display: inline !important;
    }
    .d-inline-block-lg {
        display: inline-block !important;
    }
    .d-block-lg {
        display: block !important;
    }
    .d-table-lg {
        display: table !important;
    }
    .d-table-row-lg {
        display: table-row !important;
    }
    .d-table-cell-lg {
        display: table-cell !important;
    }
    .d-flex-lg {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-inline-flex-lg {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
    /*endregion*/
    /*region [Float]*/
    .float-left-lg {
        float: left !important;
    }
    .float-right-lg {
        float: right !important;
    }
    .float-none-lg {
        float: none !important;
    }
    /*endregion*/
}