/* shadow */

.bxs-none {
    box-shadow: none !important;
}

.bxs-xs {
    box-shadow: rgba(0, 0, 0, 0.04) 0 0 4px;
}

.bxs-sm {
    box-shadow: rgba(0, 0, 0, 0.07) 0 0 10px;
}

.bxs-md {
    box-shadow: rgba(0, 0, 0, 0.10) 0 0 25px;
}

.bxs-lg {
    box-shadow: rgba(0, 0, 0, 0.15) 0 0 63px;
}

.bxs-xl {
    box-shadow: rgba(0, 0, 0, 0.35) 0 0 156px;
}

/* z-index */

.z-index-none { z-index: 0; }
.z-index-1,
.z-index-xs { z-index: 1; }
.z-index-2 { z-index: 2; }
.z-index-3 { z-index: 3; }
.z-index-4 { z-index: 4; }
.z-index-5 { z-index: 5; }
.z-index-sm { z-index: 10; }
.z-index-md { z-index: 100; }
.z-index-lg { z-index: 1000; }
.z-index-xl { z-index: 10000; }

/* postfix */

.rub:before {

}

/* image */

.bgd-cover {
    background-size: cover;
    background-position: center;
}

.bgd-cover-top {
    background-size: cover;
    background-position: top;
}

.bgd-cover-bottom {
    background-size: cover;
    background-position: bottom;
}

.bgd-contain {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.bgd-contain.bgd-repeat {
    background-repeat: repeat;
}

.bgd-contain.bgd-contain-left {
    background-position: left center;
}

.bgd-contain.bgd-contain-right {
    background-position: right center;
}

.bgd-cover-wrap .bgd-cover.bgd-cover-zoomed {
    background-size: 120%;
    opacity: .5;
}

.bgd-cover-wrap:hover .bgd-cover.bgd-cover-zoomed {
    background-size: 140%;
    opacity: .2;
}

/* border */

.border-none {
    border: none;
}

.border-top-none {
    border-top: 0;
}

.border-right-none {
    border-right: 0;
}

.border-bottom-none {
    border-bottom: 0;
}

.border-left-none {
    border-left: 0;
}

.border-bottom-white {
    border-bottom: 1px solid #fff!important;
}

.border-bottom-black {
    border-bottom: 1px solid #111!important;
}

/* links */

/* lnk-ul */

.lnk-ul,
.lnk-ul:visited,
.lnk-ul:active,
.lnk-ul:hover {
    text-decoration: none;
    border-bottom: 1px solid !important;
}

.lnk-lined,
.lnk-lined:visited,
.lnk-lined:active,
.lnk-lined:hover {
    text-decoration: none;
    border-bottom: 1px solid rgb(0, 100, 229) !important;
}

.lnk-lined.clr-black,
.lnk-lined.clr-black:visited,
.lnk-lined.clr-black:active,
.lnk-lined.clr-black:hover {
    text-decoration: none;
    color: #343434 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.11) !important;
}

.lnk-lined:active,
.lnk-lined:hover {
    text-decoration: none;
    border-bottom: 1px solid !important;
}

/* lnk-clear */

.lnk-clear,
.lnk-clear:visited,
.lnk-clear:focus,
.lnk-clear:active,
.lnk-clear:hover {
    text-decoration: none !important;
    outline: none!important;
}

.lnk-clear.clr-black,
.lnk-clear.clr-black:visited,
.lnk-clear.clr-black:focus,
.lnk-clear.clr-black:active,
.lnk-clear.clr-black:hover {
    color: #111;
}

.lnk-clear.lnk-hovered:focus,
.lnk-clear.lnk-hovered:hover {
    border-bottom: 1px solid !important;
}

/* lnk-dt */

.lnk-dt,
.lnk-dt:visited,
.lnk-dt:focus,
.lnk-dt:active,
.lnk-dt:hover {
    text-decoration: none;
    border-bottom: 1px dotted rgba(3, 73, 213, 0.20) !important;
}

.lnk-dt.clr-black,
.lnk-dt.clr-black:visited,
.lnk-dt.clr-black:focus,
.lnk-dt.clr-black:active,
.lnk-dt.clr-black:hover {
    text-decoration: none;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.11) !important;
}

/* cursor */

.cursor-pointer {
    cursor: pointer;
}

/* filter */

.ftr-grayscale-full {
    filter:grayscale(100%);
}

.ftr-grayscale-sm {
    filter:grayscale(20%);
}

.ftr-grayscale-md {
    filter:grayscale(50%);
}

.ftr-grayscale-lg {
    filter:grayscale(80%);
}

.ftr-blur-sm {
    filter:blur(3px);
}

.ftr-blur-md {
    filter:blur(6px);
}

.ftr-blur-lg {
    filter:blur(9px);
}
