/*

[Main Stylesheet]

Project     : USNews - Multipurpose News, Magazine and Blog HTML5 Template
Version     : 1.1
Author      : themelooks.com
Author URI  : https://themeforest.net/user/themelooks


NOTE:
------
PLEASE DO NOT EDIT THIS CSS, YOU MAY NEED TO USE "custom.css" FILE FOR WRITING YOUR CUSTOM CSS.
WE MAY RELEASE FUTURE UPDATES SO IT WILL OVERWRITE THIS FILE. IT'S BETTER AND SAFER TO USE "custom.css".


[TABLE OF CONTENTS]

1. GENERAL STYLES
    1.1. LINKS
    1.2. NAV LINKS
    1.3. BUTTONS
    1.4. FORM CONTROLS
    1.5. INPUT GROUPS

2. HELPER CLASSES
    2.1. BOXED
    2.2. FLOATS
    2.3. MARGINS
    2.4. PADDINGS
    2.5. BORDERS
    2.6. TEXT COLORS
    2.7. BACKGROUND SKEW
    2.8. BACKGROUND COLORS
    2.9. BACKGROUND IMAGE
    2.10. BACKGROUND OVERLAY
    2.11. BORDER COLORS
    2.12. GUTTERS
    2.13. VERTICAL CENTERING

3. COMPONENTS
    3.1. PRELOADER
    3.2. DROPDOWN MENU
    3.3. PAGINATION
    3.4. COUNTDOWN
    3.5. COMMENT LIST
    3.6. COMMENT FORM
    3.7. SECTION TITLE
    3.8. QUANTITY
    3.9. MAP FLUID

4. WIDGETS
    4.1. WIDGET TITLE
    4.2. AD WIDGET
    4.3. SOCIAL WIDGET
    4.4. SUBSCRIBE WIDGET
    4.5. LIST WIDGET
    4.6. POLL WIDGET
    4.7. ABOUT WIDGET
    4.8. LINKS WIDGET
    4.9. NAV WIDGET
    4.10. TAGS WIDGET
    4.11. SEARCH WIDGET
    4.12. CART WIDGET
    4.13. TWITTER WIDGET
    4.14. FLICKER WIDGET
    4.15. PROFILE WIDGET

5. HEADER SECTION
    5.1. HEADER TOPBAR
    5.2. HEADER MAINBAR
    5.3. HEADER NAVBAR
        5.3.1. HEADER MENU LINKS
        5.3.2. HEADER MEGAMENU
        5.3.3. HEADER MEGAMENU FILTER
        5.3.4. HEADER MEGAMENU POSTS
        5.3.5. HEADER MEGAMENU PAGINATION
        5.3.6. HEADER SEARCH FORM

6. BANNER SECTION

7. FEATURES SECTION
    7.1. FEATURE ITEM
    7.2. FEATURE CONTENT

8. MAIN CONTENT SECTION
    8.1. MAIN CONTENT NAVBAR
    8.2. NEWS UPDATES BAR
    8.3. MAIN CONTENT BREADCRUMB
    8.4. ARCHIVES PAGE TITLE
    8.5. POST ITEMS TITLE
    8.6. POST ITEMS
        8.6.1. POST IMAGE
        8.6.2. POST MAP
        8.6.3. POST CATS, TAGS
        8.6.4. POST INFO
        8.6.5. POST CONTENT
        8.6.6. POST ACTION
        8.6.7. POST SOCIAL
        8.6.8. POST AUTHOR INFO
        8.6.9. POST NAV
    8.7. PRODUCT ITEMS
    8.8. CONTACT CATEGORIES
    8.9. CONTRIBUTOR ITEMS
    8.10. INFO BLOCKS

9. PORTFOLIO SECTION

10. PRICING SECTION
    10.1. PRICING IMAGE
    10.2. PRICING CONTENT

11. FAQ SECTION

12. LOGIN SECTION
    12.1. LOGIN FORM

13. COMING SOON SECTION
    13.1. COMING SOON CONTENT

14. 404 SECTION
    14.1. 404 CONTENT

15. CART SECTION
    15.1. CART ITEMS

16. CHECKOUT SECTION
    16.1. CHECKOUT INFO
    16.2. CHECKOUT BILLING INFO

17. COUNTER SECTION

18. CONTACT SECTION
    18.1. CONTACT INFO

19. FOOTER SECTION
    19.1. FOOTER WIDGETS
    19.2. FOOTER COPYRIGHT

20. STICKY SOCIAL

21. BACK TO TOP BUTTON

*/



/*------------------------------------*\
    1. GENERAL STYLES
\*------------------------------------*/
body {
    color: #777;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    word-wrap: break-word;
}

p:last-child { /* RESET MARGIN OF LAST P TAG */
    margin-bottom: 0;
}

ul:last-child {
    margin-bottom: 0;
}

img,
.nav > li > a > img { /* RESPONSIVE IMAGES */
    max-width: 100%;
    height: auto;
}

::-moz-selection {
    color: #fff;
    background-color: var(--primary-color);
}

::selection {
    color: #fff;
    background-color: var(--primary-color);
}

.del {
    text-decoration: line-through;
}

.table:last-child {
    margin-bottom: 0;
}

.sa_svg-hidden,
.sa_svg-hidden svg {
    width: 0;
    height: 0;
    overflow: hidden;
}

[data-zoom="img"] {
    display: block;
    overflow: hidden;
}

/* 1.1. LINKS */
a {
    color: var(--primary-color);
    -webkit-transition-property: color, border-color, background-color, box-shadow;
            transition-property: color, border-color, background-color, box-shadow;
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
    -webkit-transition-timing-function: ease, ease, ease-in-out, ease-in-out;
            transition-timing-function: ease, ease, ease-in-out, ease-in-out;
}

a:hover,
a:focus {
    color: var(--primary-color);
}

.btn-link {
    display: inline-block;
    color: inherit;
    font-weight: inherit;
    -webkit-transition: color .25s, border-color .25s, background-color .25s ease-in-out;
            transition: color .25s, border-color .25s, background-color .25s ease-in-out;
    cursor: pointer;
}

.btn-link:hover,
.btn-link:focus,
.btn-link.active {
    color: var(--primary-color);
}

a, .btn-link,
a:link, .btn-link:link,
a:visited, .btn-link:visited,
a:hover, .btn-link:hover,
a:focus, .btn-link:focus,
a:active, .btn-link:active {
    text-decoration: none;
    outline: 0;
}

/* 1.2. NAV LINKS */
.nav li a:hover,
.nav li a:focus,
.nav li.open a,
.nav li.open a:hover,
.nav li.open a:focus {
    background-color: transparent; /* RESET NAV HOVER AND FOCUS BACKGROUND COLOR */
}

.nav li a {
    color: inherit;
}

.nav li a:focus,
.nav li.active > a:focus,
.nav li.open > a:focus {
    color: inherit;
}

.nav li a:hover,
.nav li.active > a,
.nav li.active > a:hover,
.nav li.active > a:focus,
.nav li.open > a,
.nav li.open > a:hover,
.nav li.open > a:focus {
    color: var(--primary-color);
}

/* 1.3. BUTTONS */
.btn {
    padding: 2px 15px;
    border-radius: 0;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    -webkit-transition: color .25s, border-color .25s, background-color .25s ease-in-out;
            transition: color .25s, border-color .25s, background-color .25s ease-in-out;
}

.btn.active,
.btn:active {
    box-shadow: none; /* RESET BUTTON BOX SHADOW */
}

.btn:focus,
.btn.focus,
.btn.active.focus,
.btn.active:focus,
.btn:active.focus,
.btn:active:focus,
.btn.focus {
    outline: 0; /* RESET BUTTON OUTLINE */
}


.btn-sm {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 12px;
    line-height: 22px;
}

.btn-md {
    padding-top: 7px;
    padding-bottom: 7px;
}

.btn-lg {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 16px;
    line-height: 26px;
}

.btn-default,
.btn-default.disabled:hover,
.btn-default.disabled:focus,
.btn-default.disabled.focus,
.btn-default[disabled]:hover,
.btn-default[disabled]:focus,
.btn-default[disabled].focus {
    color: #999;
    background-color: transparent;
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default:active:hover,
.btn-default:active:focus,
.btn-default:active.focus,
.btn-default.active,
.btn-default.active:hover,
.btn-default.active:focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default,
.open > .dropdown-toggle.btn-default:hover,
.open > .dropdown-toggle.btn-default:focus,
.open > .dropdown-toggle.btn-default.focus {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary,
.btn-primary.disabled:hover,
.btn-primary.disabled:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled]:hover,
.btn-primary[disabled]:focus,
.btn-primary[disabled].focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary:active.focus,
.btn-primary.active,
.btn-primary.active:hover,
.btn-primary.active:focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary,
.open > .dropdown-toggle.btn-primary:hover,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary.focus {
    background-color: #222;
    border-color: #222;
}

.bg--overlay .btn-primary:hover,
.bg--overlay .btn-primary:focus {
    color: #222;
    background-color: #fff;
    border-color: #fff;
}

/* 1.4. FORM CONTROLS */
.form-control {
    height: 36px;
    padding: 4px 20px;
    background-color: transparent;
    border-color: #f9f9f9;
    border-radius: 0;
    box-shadow: none;
    font-size: 16px;
    line-height: 26px;
    -webkit-transition: color .25s, border-color .25s, background-color .25s ease-in-out;
            transition: color .25s, border-color .25s, background-color .25s ease-in-out;
    outline: 0;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

textarea.form-control {
    height: auto;
    min-height: 100px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

/* 1.5. INPUT GROUPS */
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
    margin-left: 0;
}

/*------------------------------------*\
    2. HELPER CLASSES
\*------------------------------------*/
/* 2.1. BOXED */
body.boxed {
    background-size: auto;
    background-repeat: repeat;
}

body.boxed > .wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* 2.2. FLOATS */
.float--left {
    float: left;
}

.float--right {
    float: right;
}

.float--none {
    float: none;
}

/* 2.3. MARGINS */
.mtop--30 {
    margin-top: 30px;
}
.mbottom--20 {
    margin-bottom: 20px;
}

.fm {
    margin-right: 5px;
}

.flm {
    margin-left: 5px;
}

/* 2.4. PADDINGS */
.ptop--15 {
    padding-top: 15px;
}
.ptop--30 {
    padding-top: 30px;
}
.ptop--20 {
    padding-top: 20px;
}
.ptop--60 {
    padding-top: 60px;
}
.ptop--70 {
    padding-top: 70px;
}

.pbottom--30 {
    padding-bottom: 30px;
}
.pbottom--20 {
    padding-bottom: 20px;
}
.pbottom--60 {
    padding-bottom: 60px;
}

.pd--30-0 {
    padding: 30px 0;
}

.pd--20-0 {
    padding: 20px 0;
}
.pd--100-0 {
    padding: 100px 0;
}
.pd--150-0 {
    padding: 150px 0;
}

.pd--30-0-20 {
    padding: 30px 0 20px;
}
.pd--20-0-40 {
    padding: 20px 0 40px;
}

/* 2.5. BORDERS */
.bdtop--1 {
    border-top: 1px solid;
}

/* 2.6. TEXT COLORS */
.text--color-1 {
    color: var(--primary-color);
}

/* 2.7. BACKGROUND SKEW */
.bg--skew-up,
.bg--skew-down {
    position: relative;
    z-index: 0;
}

.bg--skew-up:before,
.bg--skew-down:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background-color: transparent;
    -webkit-transform: skewY(-4deg);
            transform: skewY(-4deg);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    z-index: -1;
}

.bg--skew-down:after {
    top: auto;
    bottom: 0;
    -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
}

/* 2.8. BACKGROUND COLORS */
.bg--color-0,
.bg--color-0--b:before,
.bg--color-0--a:after,
.bg--color-0.bg--skew-up:before,
.bg--color-0.bg--skew-down:after {
    color: #222;
    background-color: #fff;
}

.bg--color-1,
.bg--color-1--b:before,
.bg--color-1--a:after,
.bg--color-1.bg--skew-up:before,
.bg--color-1.bg--skew-down:after {
    color: #fff;
    background-color: var(--primary-color);
}

.bg--color-2,
.bg--color-2--b:before,
.bg--color-2--a:after,
.bg--color-2.bg--skew-up:before,
.bg--color-2.bg--skew-down:after {
    color: #fff;
    background-color: #1d1d1d;
}

.bg--color-3,
.bg--color-3--b:before,
.bg--color-3--a:after,
.bg--color-3.bg--skew-up:before,
.bg--color-3.bg--skew-down:after {
    color: #fff;
    background-color: #000;
}

.bg--color-4,
.bg--color-4--b:before,
.bg--color-4--a:after,
.bg--color-4.bg--skew-up:before,
.bg--color-4.bg--skew-down:after {
    background-color: #f9f9f9;
}

/* 2.9. BACKGROUND IMAGE */
.bg--img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 2.10. BACKGROUND OVERLAY */
.bg--overlay {
    position: relative;
    color: #fff;
    z-index: 0;
}

.bg--overlay:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    z-index: -1;
}

/* 2.11. BORDER COLORS */
.bd--color-1 {
    border-color: var(--primary-color);
}

.bd--color-2 {
    border-color: #eee;
}

/* 2.12. GUTTERS */
.gutter--0 {
    margin-left: 0;
    margin-right: 0;
}

.gutter--0 > [class*='col-'] {
    padding-left: 0;
    padding-right: 0;
}

.gutter--10 {
    margin-left: -5px;
    margin-right: -5px;
}

.gutter--10 > [class*='col-'] {
    padding-left: 5px;
    padding-right: 5px;
}

.gutter--15 {
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.gutter--15 > [class*='col-'] {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.gutter--20 {
    margin-left: -10px;
    margin-right: -10px;
}

.gutter--20 > [class*='col-'] {
    padding-left: 10px;
    padding-right: 10px;
}

/* 2.13. VERTICAL CENTERING */
.vc--parent {
    width: 100%;
    height: 100%;
    display: table;
}

.vc--child {
    display: table-cell;
    vertical-align: middle;
}

.vc--child-bottom {
    display: table-cell;
    vertical-align: bottom;
}

.row--vc > div {
    float: none;
    display: table-cell;
    vertical-align: middle;
}

.row--vb > div {
    float: none;
    display: table-cell;
    vertical-align: bottom;
}

/*------------------------------------*\
    3. COMPONENTS
\*------------------------------------*/
/* 3.1. PRELOADER */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
}

.preloader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.preloader:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.preloader--inner {
    position: absolute;
    top: 50%;
    left: 50%;
}

.preloader[data-preloader="1"] .preloader--inner {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
}

.preloader[data-preloader="1"] .preloader--inner:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    -webkit-animation: preloaderScaleout 1.0s infinite ease-in-out;
            animation: preloaderScaleout 1.0s infinite ease-in-out;
}

.preloader.bg--color-1--b[data-preloader="1"] .preloader--inner:before {
    background-color: #fff;
}

.preloader[data-preloader="2"] .preloader--inner {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
}

.preloader[data-preloader="2"] .preloader--inner:before,
.preloader[data-preloader="2"] .preloader--inner:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    -webkit-animation: preloaderBounce 2.0s infinite ease-in-out;
            animation: preloaderBounce 2.0s infinite ease-in-out;
}

.preloader[data-preloader="2"] .preloader--inner:after {
    -webkit-animation-delay: -1.0s;
            animation-delay: -1.0s;
}

.preloader[data-preloader="3"] .preloader--inner {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    -webkit-animation: preloaderRotate 2s linear infinite;
            animation: preloaderRotate 2s linear infinite;
}

.preloader[data-preloader="3"] .preloader--inner:before,
.preloader[data-preloader="3"] .preloader--inner:after {
    content: " ";
    display: inline-block;
    position: absolute;
    top: 0;
    width: 60%;
    height: 60%;
    background-color: var(--primary-color);
    border-radius: 100%;
    -webkit-animation: preloaderBounce 2.0s infinite ease-in-out;
            animation: preloaderBounce 2.0s infinite ease-in-out;
}

.preloader[data-preloader="3"] .preloader--inner:after {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
            animation-delay: -1.0s;
}

.preloader[data-preloader="4"] .preloader--inner {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    background-color: var(--primary-color);
    -webkit-animation: preloaderRotateplane 1.2s ease-in-out infinite;
            animation: preloaderRotateplane 1.2s ease-in-out infinite;
}

.preloader[data-preloader="5"] .preloader--inner {
    width: 32px;
    height: 32px;
    margin-top: -32px;
    margin-left: -32px;
}

.preloader[data-preloader="5"] .preloader--inner:before,
.preloader[data-preloader="5"] .preloader--inner:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    -webkit-animation: preloaderCubemove 1.8s ease-in-out infinite;
            animation: preloaderCubemove 1.8s ease-in-out infinite;
}

.preloader[data-preloader="5"] .preloader--inner:after {
    -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s;
}

.preloader[data-preloader="6"] .preloader--inner {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
}

.preloader[data-preloader="6"] .preloader--inner span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(2) {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(3) {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(4) {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(5) {
    -webkit-transform: rotate(120deg);
            transform: rotate(120deg);
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(6) {
    -webkit-transform: rotate(150deg);
            transform: rotate(150deg);
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(7) {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(8) {
    -webkit-transform: rotate(210deg);
            transform: rotate(210deg);
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(9) {
    -webkit-transform: rotate(240deg);
            transform: rotate(240deg);
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(10) {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(11) {
    -webkit-transform: rotate(300deg);
            transform: rotate(300deg);
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(12) {
    -webkit-transform: rotate(330deg);
            transform: rotate(330deg);
}

.preloader[data-preloader="6"] .preloader--inner span:before {
    content: " ";
    display: block;
    width: 15%;
    height: 15%;
    background-color: var(--primary-color);
    border-radius: 100%;
    -webkit-animation: preloaderCircleFade 1.2s infinite ease-in-out both;
            animation: preloaderCircleFade 1.2s infinite ease-in-out both;
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(2):before {
    -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s;
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(3):before {
    -webkit-animation-delay: -1s;
            animation-delay: -1s;
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(4):before {
    -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s;
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(5):before {
    -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s;
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(6):before {
    -webkit-animation-delay: -0.7s;
            animation-delay: -0.7s;
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(7):before {
    -webkit-animation-delay: -0.6s;
            animation-delay: -0.6s;
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(8):before {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s;
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(9):before {
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s;
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(10):before {
    -webkit-animation-delay: -0.3s;
            animation-delay: -0.3s;
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(11):before {
    -webkit-animation-delay: -0.2s;
            animation-delay: -0.2s;
}

.preloader[data-preloader="6"] .preloader--inner span:nth-child(12):before {
    -webkit-animation-delay: -0.1s;
            animation-delay: -0.1s;
}

.preloader[data-preloader="7"] .preloader--inner {
    width: 38px;
    height: 30px;
    margin-top: -15px;
    margin-left: -19px;
    font-size: 0;
    line-height: 0;
    text-align: center;
}

.preloader[data-preloader="7"] .preloader--inner span {
    display: inline-block;
    width: 6px;
    height: 100%;
    background-color: var(--primary-color);
    -webkit-animation: preloaderStretchdelay 1.2s ease-in-out infinite;
            animation: preloaderStretchdelay 1.2s ease-in-out infinite;
}

.preloader[data-preloader="7"] .preloader--inner span + span {
    margin-left: 2px;
}

.preloader[data-preloader="7"] .preloader--inner span:nth-child(2) {
    -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s;
}

.preloader[data-preloader="7"] .preloader--inner span:nth-child(3) {
    -webkit-animation-delay: -1s;
            animation-delay: -1s;
}

.preloader[data-preloader="7"] .preloader--inner span:nth-child(4) {
    -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s;
}

.preloader[data-preloader="7"] .preloader--inner span:nth-child(5) {
    -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s;
}

.preloader[data-preloader="8"] .preloader--inner {
    width: 90px;
    height: 30px;
    margin-top: -15px;
    margin-left: -45px;
    font-size: 0;
    line-height: 0;
    text-align: center;
}

.preloader[data-preloader="8"] .preloader--inner span {
    display: inline-block;
    height: 15px;
    width: 15px;
    margin-left: 1.5px;
    margin-right: 1.5px;
    background-color: var(--primary-color);
    border-radius: 50%;
    -webkit-animation: preloaderStretchdelay2 0.7s ease-in-out infinite;
            animation: preloaderStretchdelay2 0.7s ease-in-out infinite;
}

.preloader[data-preloader="8"] .preloader--inner span:nth-child(2) {
    -webkit-animation-delay: -0.6s;
            animation-delay: -0.6s;
}

.preloader[data-preloader="8"] .preloader--inner span:nth-child(3) {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s;
}

.preloader[data-preloader="8"] .preloader--inner span:nth-child(4) {
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s;
}

.preloader[data-preloader="9"] .preloader--inner {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
}

.preloader[data-preloader="9"] .preloader--inner span {
    float: left;
    display: block;
    width: 33%;
    height: 33%;
    background-color: var(--primary-color);
    -webkit-animation: preloaderCubeGridScale 1.3s infinite ease-in-out;
            animation: preloaderCubeGridScale 1.3s infinite ease-in-out;
}

.preloader[data-preloader="9"] .preloader--inner span:nth-child(1) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}

.preloader[data-preloader="9"] .preloader--inner span:nth-child(2) {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
}

.preloader[data-preloader="9"] .preloader--inner span:nth-child(3) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
}

.preloader[data-preloader="9"] .preloader--inner span:nth-child(4) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
}

.preloader[data-preloader="9"] .preloader--inner span:nth-child(5) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}

.preloader[data-preloader="9"] .preloader--inner span:nth-child(6) {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
}

.preloader[data-preloader="9"] .preloader--inner span:nth-child(7) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

.preloader[data-preloader="9"] .preloader--inner span:nth-child(8) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
}

.preloader[data-preloader="9"] .preloader--inner span:nth-child(9) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}

.preloader[data-preloader="10"] .preloader--inner {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    -webkit-transform: rotateZ(45deg);
            transform: rotateZ(45deg);
}

.preloader[data-preloader="10"] .preloader--inner span {
    float: left;
    display: block;
    position: relative;
    width: 50%;
    height: 50%;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
}

.preloader[data-preloader="10"] .preloader--inner span:nth-child(2) {
    -webkit-transform: scale(1.1) rotateZ(90deg);
            transform: scale(1.1) rotateZ(90deg);
}

.preloader[data-preloader="10"] .preloader--inner span:nth-child(3) {
    -webkit-transform: scale(1.1) rotateZ(270deg);
            transform: scale(1.1) rotateZ(270deg);
}

.preloader[data-preloader="10"] .preloader--inner span:nth-child(4) {
    -webkit-transform: scale(1.1) rotateZ(180deg);
            transform: scale(1.1) rotateZ(180deg);
}

.preloader[data-preloader="10"] .preloader--inner span:before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    -webkit-animation: preloaderFoldCubeAngle 2.4s infinite linear both;
            animation: preloaderFoldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
}

.preloader[data-preloader="10"] .preloader--inner span:nth-child(2):before {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
}

.preloader[data-preloader="10"] .preloader--inner span:nth-child(3):before {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
}

.preloader[data-preloader="10"] .preloader--inner span:nth-child(4):before {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
}

.preloader[data-preloader="img"] .preloader--inner {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

@-webkit-keyframes preloaderScaleout {
    0% {
        -webkit-transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes preloaderScaleout {
    0% {
        -webkit-transform: scale(0);
                transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@-webkit-keyframes preloaderRotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes preloaderRotate {
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@-webkit-keyframes preloaderRotateplane {
    0% {
        -webkit-transform: perspective(120px);
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg);
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
    }
}

@keyframes preloaderRotateplane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
                transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    } 50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
                transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    } 100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
                transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

@-webkit-keyframes preloaderBounce {
    0%, 100% {
        -webkit-transform: scale(0.0);
    }

    50% {
        -webkit-transform: scale(1.0);
    }
}

@keyframes preloaderBounce {
    0%, 100% { 
        -webkit-transform: scale(0.0);
                transform: scale(0.0);
    } 50% { 
        -webkit-transform: scale(1.0);
                transform: scale(1.0);
    }
}

@-webkit-keyframes preloaderCubemove {
    25% {
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    }

    50% {
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    }

    75% {
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    }

    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes preloaderCubemove {
    25% { 
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
                transform: translateX(42px) rotate(-90deg) scale(0.5);
    } 50% { 
        -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
                transform: translateX(42px) translateY(42px) rotate(-179deg);
    } 50.1% { 
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
                transform: translateX(42px) translateY(42px) rotate(-180deg);
    } 75% { 
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
                transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    } 100% { 
        -webkit-transform: rotate(-360deg);
                transform: rotate(-360deg);
    }
}

@-webkit-keyframes preloaderCircleFade {
    0%, 39%, 100% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    40% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
}

@keyframes preloaderCircleFade {
    0%, 39%, 100% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    40% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
}

@-webkit-keyframes preloaderStretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1.0);
    }
}

@keyframes preloaderStretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
                transform: scaleY(0.4);
    }  20% {
        -webkit-transform: scaleY(1.0);
                transform: scaleY(1.0);
    }
}

@-webkit-keyframes preloaderStretchdelay2 {
    0%, 40%, 100% {
        -webkit-transform: translateY(-10px);
    }

    20% {
        -webkit-transform: translateY(-20px);
    }
}

@keyframes preloaderStretchdelay2 {
    0%, 40%, 100% {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    } 20% {
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);
    }
}

@-webkit-keyframes preloaderCubeGridScale {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
                transform: scale3D(1, 1, 1);
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
                transform: scale3D(0, 0, 1);
    }
}

@keyframes preloaderCubeGridScale {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
                transform: scale3D(1, 1, 1);
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
                transform: scale3D(0, 0, 1);
    }
}

@-webkit-keyframes preloaderFoldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
                transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
                transform: perspective(140px) rotateX(0deg);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
                transform: perspective(140px) rotateY(180deg);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes preloaderFoldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
                transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
                transform: perspective(140px) rotateX(0deg);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
                transform: perspective(140px) rotateY(180deg);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

/* 3.2. DROPDOWN MENU */
.dropdown-menu {
    margin: 0;
    border-width: 0 0 2px;
    border-color: var(--primary-color);
    border-radius: 0;
    box-shadow: 0 1px 15px rgba(0, 0, 0, .2);
}

.dropdown-menu > li + li {
    border-top: 1px solid #eee;
}

.dropdown-menu > li > a {
    padding-top: 9px;
    padding-bottom: 10px;
}

.dropdown-menu > .dropdown > .dropdown-menu {
    top: 0;
    left: 100%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.dropdown-menu > .switch--left > .dropdown-menu,
.dropdown-menu > .switch--right > .dropdown-menu {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.dropdown-menu > .switch--left > .dropdown-menu {
    left: auto;
    right: 100%;
}

.dropdown-left > .dropdown-menu {
    left: auto;
    right: 0;
}

/* 3.3. PAGINATION */
.pagination {
    margin: -10px -5px 0;
    color: #999;
    font-size: 0;
    line-height: 0;
}

.pagination > li {
    display: inline-block;
    margin: 10px 5px 0;
    font-size: 16px;
    line-height: 26px;
    vertical-align: middle;
}

.pagination > li > a,
.pagination > li > span {
    min-width: 36px;
    padding: 0 3px;
    color: #999;
    font-size: 16px;
    line-height: 34px;
    text-align: center;
}

.pagination > li:first-child > a,
.pagination > li:last-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > span {
    border-radius: 0;
}

.pagination > li > a:hover,
.pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li.active > span,
.pagination > li.active > span:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination-hint {
    margin-bottom: 0;
    color: #999;
    font-size: 16px;
    line-height: 36px;
    font-weight: 600;
}

/* 3.4. COUNTDOWN */
.countdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
    line-height: 0;
}

.countdown ul li {
    display: inline-block;
    position: relative;
    margin-right: 42px;
    z-index: 0;
}

.countdown ul li:before,
.countdown ul li:after {
    content: " ";
    position: absolute;
    top: 50%;
    right: -24px;
    width: 5px;
    height: 5px;
    margin-top: -4px;
    background-color: #999;
    z-index: 0;
}

.countdown ul li:after {
    margin-top: 7px;
}

.countdown ul li:last-child:before,
.countdown ul li:last-child:after {
    display: none;
}

.countdown ul li strong {
    display: block;
    font-size: 48px;
    line-height: 52px;
    font-weight: normal;
}

.countdown ul li strong:before,
.countdown ul li strong:after {
    content: " ";
    position: absolute;
    top: 14px;
    right: -22px;
    width: 1px;
    height: 13px;
    background-color: #555;
}

.countdown ul li strong:after {
    top: auto;
    bottom: 5px;
}

.countdown ul li:last-child strong:before,
.countdown ul li:last-child strong:after {
    display: none;
}

.countdown ul li span {
    display: block;
    margin-top: 1px;
    font-size: 14px;
    line-height: 18px;
}

/* 3.5. COMMENT LIST */
.post--items-title + .comment--items {
    margin-top: 10px;
}

.comment--items > li + li,
.comment--items > li > .comment--items {
    margin-top: 20px;
}

.comment--items > li > .comment--items {
    padding-left: 30px;
}

.comment--img {
    max-width: 60px;
    margin-right: 20px;
    border: 2px solid #ccc;
}

.comment--info {
    padding: 16px 20px 3px;
    background-color: #f2f3f5;
    overflow: hidden;
}

.comment--header {
    margin-bottom: 8px;
    color: #999;
    line-height: 18px;
}

.comment--header .name {
    float: left;
    margin-bottom: 0;
    color: #222;
    font-weight: 600;
}

.comment--header .date {
    float: left;
    margin-left: 15px;
    margin-bottom: 0;
    padding-left: 14px;
    border-left: 1px solid #ccc;
}

.comment--header .reply {
    float: right;
    display: block;
}

.comment--header .rating {
    float: right;
    color: var(--primary-color);
    font-size: 0;
    line-height: 0;
}

.comment--header .rating .nav > li {
    display: inline-block;
}

.comment--header .rating .nav > li + li {
    margin-left: 3px;
}

.comment--header .rating .nav > li > i {
    font-size: 14px;
    line-height: 18px;
}

/* 3.6. COMMENT FORM */
.comment-respond {
    padding: 23px 30px 30px;
    background-color: #f2f3f5;
}

.comment-respond .status .alert {
    border-radius: 0;
}

.comment-respond p {
    color: #222;
    font-weight: 600;
}

.comment-respond label {
    display: block;
    margin-bottom: 8px;
    color: #777;
    font-weight: 400;
}

.comment-respond label span {
    display: block;
    margin-bottom: 8px;
}

.comment-respond .form-control {
    border-color: #ccc;
    background-color:#fff;
}

.comment-respond .form-control:focus {
    border-color: var(--primary-color);
}

.comment-respond textarea {
    min-height: 188px;
}

.comment-respond .btn {
    margin-top: 22px;
}

.comment-respond .rating {
    margin-top: -1px;
    margin-bottom: 8px;
}

.comment-respond .rating label {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 0;
    color: #222;
    font-weight: 600;
    vertical-align: top;
}

.comment-respond .rating .br-wrapper {
    display: inline-block;
}

.comment-respond .rating .br-widget a {
    display: inline-block;
    margin-right: 9px;
}

.comment-respond .rating .br-widget a:last-child {
    margin-right: 0;
}

.comment-respond .rating .br-widget a:after {
    color: var(--primary-color);
    font-size: 14px;
}

.comment-respond .rating .br-widget a[data-rating-value="0"] {
    display: none;
}

/* 3.7. SECTION TITLE */
.section--title .h3 {
    margin: -5px 0 -1px;
    color: #222;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

/* 3.8. QUANTITY */
.quantity {
    display: inline-block;
    max-width: 60px;
    vertical-align: middle;
}

.quantity .form-control {
    height: 30px;
    padding: 2px 10px;
    border-width: 0;
    text-align: center;
}

/* 3.9. MAP FLUID */
.map--fluid {
    min-height: 300px;
}

/*------------------------------------*\
    4. WIDGETS
\*------------------------------------*/
.main--sidebar .widget + .widget {
    margin-top: 20px;
}

/* 4.1. WIDGET TITLE */
.widget--title {
    position: relative;
    padding: 12px 24px 13px 0;
    border-top: 2px solid var(--primary-color);
    z-index: 0;
}

.widget--title .h4 {
    position: relative;
    margin: 0;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 0;
}

.widget--title .icon {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -13px;
    color: #999;
    font-size: 16px;
    line-height: 26px;
}

.widget--title .nav {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -15px;
    color: #999;
    font-size: 0;
    line-height: 0;
}

.widget--title .nav a {
    padding: 0;
    font-size: 16px;
    line-height: 26px;
}

.widget--title .nav span.divider {
    display: inline-block;
    margin: 0 5px;
    font-size: 16px;
    line-height: 26px;
}

.bg--color-2 .widget--title {
    border-color: #fff;
}

.bg--color-2 .widget--title .h4,
.bg--color-2 .widget--title .icon {
    color: #fff;
}

/* 4.2. AD WIDGET */
.ad--widget {
    padding: 30px 30px 15px;
    background-color: #f8f8f8;
    text-align: center;
}

.ad--widget > .row {
    margin: -10px -20px;
}

.ad--widget > .row > [class*='col-'] {
    padding-left: 10px;
    padding-right: 10px;
}

.ad--widget a {
    display: block;
}

.ad--widget img {
    margin-bottom: 15px;
}

/* 4.3. SOCIAL WIDGET */
.social--widget .nav {
    padding: 5px 0;
    background-color: #f8f8f8;
    font-size: 0;
    line-height: 0;
}

.social--widget.style--1 .nav > li {
    float: left;
    width: 33.3333%;
}

.social--widget.style--1 .nav > li > a {
    position: relative;
    padding: 15px 15px 8px;
    border-top: 1px solid #eee;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    z-index: 0;
}

.social--widget.style--1 .nav > li:nth-child(1) > a,
.social--widget.style--1 .nav > li:nth-child(2) > a,
.social--widget.style--1 .nav > li:nth-child(3) > a {
    border-top-width: 0;
}

.social--widget.style--1 .nav > li > a:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    max-height: 50px;
    border-right: 1px solid #eee;
    z-index: -1;
}

.social--widget.style--1 .nav > li:nth-child(1) > a:before,
.social--widget.style--1 .nav > li:nth-child(2) > a:before,
.social--widget.style--1 .nav > li:nth-child(3) > a:before {
    top: auto;
    bottom: 0;
}

.social--widget.style--1 .nav > li:nth-child(3n) > a:before {
    border-right-width: 0;
}

.social--widget.style--1 .nav > li > a > span {
    display: block;
}

.social--widget.style--1 .nav > li > a > span.icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 1px solid #777777;
    border-radius: 50%;
    font-size: 24px;
    line-height: 48px;
    -webkit-transition: color .25s, background-color .25s ease-in-out;
    transition: color .25s, background-color .25s ease-in-out;
}

.social--widget.style--1 ul.nav > li > a:hover > span.icon {
    color: #fff;
    background-color: #777;
}

.social--widget.style--1 .nav > li > a > span.count {
    margin-top: 6px;
    color: #222;
    font-size: 18px;
    line-height: 28px;
}

.social--widget.style--1 .nav > li > a > span.title {
    margin-top: -1px;
    color: #999;
    font-size: 14px;
    line-height: 24px;
}

.social--widget.style--2 .row {
    margin-left: 0;
    margin-right: 0;
    padding: 10px;
}

.social--widget.style--2 .nav > li > a {
    position: relative;
    height: 50px;
    margin: 10px 0;
    padding: 0;
    color: #fff;
    background-color: #ddd;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 0;
}

.social--widget.style--2 .nav > li > a > .icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 55px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px 0 0 2px;
    z-index: 1;
}

.social--widget.style--2 .nav > li > a > .icon:before {
    content: " ";
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    margin-top: -6px;
    border-style: solid;
    border-width: 6px 8px 6px 0;
    border-color: transparent #ddd transparent transparent;
}

.social--widget.style--2 .nav > li > a > .icon > i {
    margin-top: 12px;
    font-size: 18px;
    line-height: 28px;
    -webkit-transition-property: margin, font, line-height;
            transition-property: margin, font, line-height;
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
}

.social--widget.style--2 .nav > li > a:hover > .icon > i {
    margin-top: 5px;
    font-size: 14px;
    line-height: 24px;
}

.social--widget.style--2 .nav > li > a > .icon > span {
    display: block;
    margin-top: 6px;
    font-size: 0;
    line-height: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition-property: margin, font, line-height, opacity;
            transition-property: margin, font, line-height, opacity;
    -webkit-transition-duration: .35s;
            transition-duration: .35s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
}

.social--widget.style--2 .nav > li > a:hover > .icon > span {
    margin-top: -6px;
    font-size: 13px;
    line-height: 23px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.social--widget.style--2 .nav > li > a > .text > span {
    display: block;
    padding: 12px 0 10px 60px;
    font-family: "Alegreya Sans", sans-serif;
    font-size: 14px;
    line-height: 28px;
    -webkit-transform: rotateX(0) translateZ(0);
            transform: rotateX(0) translateZ(0);
    -webkit-transition: -webkit-transform .45s ease-in-out;
            transition: -webkit-transform .45s ease-in-out;
            transition: transform .45s ease-in-out;
            transition: transform .45s ease-in-out, -webkit-transform .45s ease-in-out;
}

.social--widget.style--2 .nav > li > a:hover > .text > span {
    -webkit-transform: rotateX(50deg) translateZ(50px);
            transform: rotateX(50deg) translateZ(50px);
}

.social--widget.style--2 .nav > li > a > .text > span + span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 9px;
    padding-bottom: 7px;
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    -webkit-transform: rotateX(50deg) translateZ(-53px);
            transform: rotateX(50deg) translateZ(-53px);
    z-index: 0;
}

.social--widget.style--2 .nav > li > a:hover > .text > span + span {
    -webkit-transform: rotateX(0deg) translateZ(-53px);
            transform: rotateX(0deg) translateZ(-53px);
}

.social--widget.style--3 .nav {
    padding: 10px 0;
    text-align: center;
}

.social--widget.style--3 .nav > li {
    display: inline-block;
    margin: 6px 18px 3px;
}

.social--widget.style--3 .nav > li > a {
    padding: 0;
    color: #222;
    font-size: 24px;
    line-height: 30px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transition: opacity .25s;
    transition: opacity .25s;
}

.social--widget.style--3 .nav > li > a:hover {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
}

.social--widget.style--4 .nav {
    padding: 10px;
    text-align: center;
}

.social--widget.style--4 .nav > li {
    display: inline-block;
    margin: 10px;
}

.social--widget.style--4 .nav > li > a {
    padding: 0;
}

.social--widget.style--4 .nav > li > a > i {
    min-width: 36px;
    padding: 3px 8px;
    font-size: 14px;
    line-height: 24px;
    color: #999;
    border: 1px solid #999;
    -webkit-transition: color .25s, background-color .25s ease-in-out;
            transition: color .25s, background-color .25s ease-in-out;
    text-align: center;
}

.social--widget.style--4 ul.nav > li > a:hover > i {
    color: #fff;
    background-color: #999;
}

.social--widget.style--5 .nav {
    padding: 10px;
}

.social--widget.style--5 .nav > li {
    display: inline-block;
    margin: 10px;
}

.social--widget.style--5 .nav > li > a {
    position: relative;
    min-width: 50px;
    margin: 5px;
    padding: 0;
    color: #fff;
    background-color: #999;
    border-radius: 50%;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    z-index: 0;
}

.social--widget.style--5 .nav > li > a:hover {
    color: #999;
}

.social--widget.style--5 .nav > li > a:after {
    content: " ";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: -webkit-transform .25s ease-in-out;
    transition: -webkit-transform .25s ease-in-out;
    transition: transform .25s ease-in-out;
    transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
    z-index: -1;
}

.social--widget.style--5 .nav > li > a:before {
    content: " ";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background-color: #999;
    border-radius: 50%;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: -webkit-transform .25s ease-in-out;
    transition: -webkit-transform .25s ease-in-out;
    transition: transform .25s ease-in-out;
    transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    z-index: -1;
}

.social--widget.style--5 .nav > li > a:hover:after {
    -webkit-transform: scale(1);
            transform: scale(1);
}

.social--widget.style--5 .nav > li > a:hover:before {
    -webkit-transform: scale(0);
            transform: scale(0);
}

.social--widget.style--6 .nav {
    margin-left: 0;
    margin-right: 0;
    padding: 5px 10px 15px;
}

.social--widget.style--6 .nav > li {
    margin-top: 36px;
    margin-bottom: 5px;
}

.social--widget.style--6 .nav > li > a {
    min-height: 65px;
    padding: 0;
    color: #fff;
    background-color: #999;
    border: 1px solid #999;
    text-align: center;
    text-transform: uppercase;
}

.social--widget.style--6 .nav > li > a:hover {
    color: #fff;
    background-color: transparent;
}

.social--widget.style--6 .nav > li > a > .icon {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    width: 50px;
    margin: 0 auto;
    background-color: #999;
    border: 3px solid #f8f8f8;
    border-radius: 50%;
    font-size: 18px;
    line-height: 44px;
    -webkit-transition: top .35s ease-in-out, opacity .35s ease-in-out;
            transition: top .35s ease-in-out, opacity .35s ease-in-out;
}

.social--widget.style--6 .nav > li > a:hover > .icon {
    top: -20px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.social--widget.style--6 .nav > li > a > .text {
    display: block;
    position: absolute;
    top: 50%;
    left: -15px;
    right: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-top: 13px;
    font-size: 14px;
    line-height: 24px;
    -webkit-transition: margin .35s ease-in-out, font .35s, left .35s ease-in-out;
            transition: margin .35s ease-in-out, font .35s, left .35s ease-in-out;
}

.social--widget.style--6 .nav > li > a:hover > .text {
    left: 10px;
    margin-top: 0;
    font-size: 16px;
    line-height: 26px;
}

.social--widget.style--6 .nav > li > a > .text > i {
    width: 20px;
    margin-left: 0;
    margin-right: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .35s, margin .35s;
            transition: opacity .35s, margin .35s;
}

.social--widget.style--6 .nav > li > a:hover > .text > i {
    margin-left: 5px;
    margin-right: 5px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.social--widget.style--7 .nav {
    margin-left: 0;
    margin-right: 0;
    padding: 0 16px 20px;
}

.social--widget.style--7 .nav > li {
    margin-top: 20px;
}

.social--widget.style--7 .nav > li > a {
    position: relative;
    min-height: 84px;
    padding: 17px;
    color: #ddd;
    background-color: #ddd;
    text-align: center;
    z-index: 0;
}

.social--widget.style--7 .nav > li > a:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -30px;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    -webkit-transition-property: left, background-color, opacity;
    transition-property: left, background-color, opacity;
    -webkit-transition-duration: .55s;
    transition-duration: .55s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    z-index: -1;
}

.social--widget.style--7 .nav > li > a:hover:before {
    left: 0;
    background-color: #f8f8f8;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.social--widget.style--7 .nav > li > a > i {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    margin: -25px 0 0 -25px;
    background-color: #fff;
    border-radius: 50%;
    font-size: 18px;
    line-height: 50px;
    -webkit-transition: left .45s ease-in-out;
    transition: left .45s ease-in-out;
    -webkit-transition-property: color, left, background-color;
    transition-property: color, left, background-color;
    -webkit-transition-duration: .55s;
    transition-duration: .55s;
    -webkit-transition-timing-function: ease, ease-in-out, ease-in-out;
    transition-timing-function: ease, ease-in-out, ease-in-out;
    z-index: 0;
}

.social--widget.style--7 .nav > li > a:hover > i {
    left: 0;
    color: #fff;
    background-color: #ddd;
}

.social--widget.style--7 .nav > li > a > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 35px;
    right: 15px;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    text-transform: uppercase;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .55s ease 0s;
    transition: opacity .55s ease 0s;
    z-index: -1;
}

.social--widget.style--7 .nav > li > a:hover > span {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transition-delay: .25s;
            transition-delay: .25s;
}

/* FACEBOOK */
.social--widget.style--1 .nav > li.facebook > a > span.icon,
.social--widget.style--3 .nav > li > a > .fa-facebook,
.social--widget.style--4 .nav > li > a > .fa-facebook,
.social--widget.style--7 .nav > li.facebook > a,
.social--widget.style--5 .nav > li.facebook > a:hover {
    color: #3b5998;
}

.social--widget.style--1 .nav > li.facebook > a:hover > span.icon,
.social--widget.style--2 .nav > li.facebook > a,
.social--widget.style--4 .nav > li > a:hover > .fa-facebook,
.social--widget.style--6 .nav > li.facebook > a,
.social--widget.style--6 .nav > li.facebook > a > .icon,
.social--widget.style--7 .nav > li.facebook > a,
.social--widget.style--7 .nav > li.facebook > a:hover > i,
.social--widget.style--5 .nav > li.facebook > a,
.social--widget.style--5 .nav > li.facebook > a:before,
#stickySocial ul.nav > li > a:hover > .fa-facebook,
#stickySocial ul.nav > li > a > .fa-facebook + span {
    background-color: #3b5998;
}

.social--widget.style--1 .nav > li.facebook > a > span.icon,
.social--widget.style--4 .nav > li > a > .fa-facebook,
.social--widget.style--6 .nav > li.facebook > a,
#stickySocial ul.nav > li > a:hover > .fa-facebook,
#stickySocial ul.nav > li > a > .fa-facebook + span:before {
    border-color: #3b5998;
}

.social--widget.style--2 .nav > li.facebook > a > .icon:before {
    border-right-color: #3b5998;
}

/* TWITTER */
.social--widget.style--1 .nav > li.twitter > a > span.icon,
.social--widget.style--3 .nav > li > a > .fa-twitter,
.social--widget.style--4 .nav > li > a > .fa-twitter,
.social--widget.style--7 .nav > li.twitter > a,
.social--widget.style--5 .nav > li.twitter > a:hover {
    color: #00aced;
}

.social--widget.style--1 .nav > li.twitter > a:hover > span.icon,
.social--widget.style--2 .nav > li.twitter > a,
.social--widget.style--4 .nav > li > a:hover > .fa-twitter,
.social--widget.style--6 .nav > li.twitter > a,
.social--widget.style--6 .nav > li.twitter > a > .icon,
.social--widget.style--7 .nav > li.twitter > a,
.social--widget.style--7 .nav > li.twitter > a:hover > i,
.social--widget.style--5 .nav > li.twitter > a,
.social--widget.style--5 .nav > li.twitter > a:before,
#stickySocial ul.nav > li > a:hover > .fa-twitter,
#stickySocial ul.nav > li > a > .fa-twitter + span {
    background-color: #00aced;
}

.social--widget.style--1 .nav > li.twitter > a > span.icon,
.social--widget.style--4 .nav > li > a > .fa-twitter,
.social--widget.style--6 .nav > li.twitter > a,
#stickySocial ul.nav > li > a:hover > .fa-twitter,
#stickySocial ul.nav > li > a > .fa-twitter + span:before {
    border-color: #00aced;
}

.social--widget.style--2 .nav > li.twitter > a > .icon:before {
    border-right-color: #00aced;
}

/* GOOGLE PLUS */
.social--widget.style--1 .nav > li.google-plus > a > span.icon,
.social--widget.style--3 .nav > li > a > .fa-google-plus,
.social--widget.style--4 .nav > li > a > .fa-google-plus,
.social--widget.style--7 .nav > li.google-plus > a,
.social--widget.style--5 .nav > li.google-plus > a:hover {
    color: #d34836;
}

.social--widget.style--1 .nav > li.google-plus > a:hover > span.icon,
.social--widget.style--2 .nav > li.google-plus > a,
.social--widget.style--4 .nav > li > a:hover > .fa-google-plus,
.social--widget.style--6 .nav > li.google-plus > a,
.social--widget.style--6 .nav > li.google-plus > a > .icon,
.social--widget.style--7 .nav > li.google-plus > a,
.social--widget.style--7 .nav > li.google-plus > a:hover > i,
.social--widget.style--5 .nav > li.google-plus > a,
.social--widget.style--5 .nav > li.google-plus > a:before,
#stickySocial ul.nav > li > a:hover > .fa-google-plus,
#stickySocial ul.nav > li > a > .fa-google-plus + span {
    background-color: #d34836;
}

.social--widget.style--1 .nav > li.google-plus > a > span.icon,
.social--widget.style--4 .nav > li > a > .fa-google-plus,
.social--widget.style--6 .nav > li.google-plus > a,
#stickySocial ul.nav > li > a:hover > .fa-google-plus,
#stickySocial ul.nav > li > a > .fa-google-plus + span:before {
    border-color: #d34836;
}

.social--widget.style--2 .nav > li.google-plus > a > .icon:before {
    border-right-color: #d34836;
}

/* RSS */
.social--widget.style--1 .nav > li.rss > a > span.icon,
.social--widget.style--3 .nav > li > a > .fa-rss,
.social--widget.style--4 .nav > li > a > .fa-rss,
.social--widget.style--7 .nav > li.rss > a,
.social--widget.style--5 .nav > li.rss > a:hover {
    color: #ff6600;
}

.social--widget.style--1 .nav > li.rss > a:hover > span.icon,
.social--widget.style--2 .nav > li.rss > a,
.social--widget.style--4 .nav > li > a:hover > .fa-rss,
.social--widget.style--6 .nav > li.rss > a,
.social--widget.style--6 .nav > li.rss > a > .icon,
.social--widget.style--7 .nav > li.rss > a,
.social--widget.style--7 .nav > li.rss > a:hover > i,
.social--widget.style--5 .nav > li.rss > a,
.social--widget.style--5 .nav > li.rss > a:before,
#stickySocial ul.nav > li > a:hover > .fa-rss,
#stickySocial ul.nav > li > a > .fa-rss + span {
    background-color: #ff6600;
}

.social--widget.style--1 .nav > li.rss > a > span.icon,
.social--widget.style--4 .nav > li > a > .fa-rss,
.social--widget.style--6 .nav > li.rss > a,
#stickySocial ul.nav > li > a:hover > .fa-rss,
#stickySocial ul.nav > li > a > .fa-rss + span:before {
    border-color: #ff6600;
}

.social--widget.style--2 .nav > li.rss > a > .icon:before {
    border-right-color: #ff6600;
}

/* VIMEO */
.social--widget.style--1 .nav > li.vimeo > a > span.icon,
.social--widget.style--3 .nav > li > a > .fa-vimeo,
.social--widget.style--4 .nav > li > a > .fa-vimeo,
.social--widget.style--7 .nav > li.vimeo > a,
.social--widget.style--5 .nav > li.vimeo > a:hover {
    color: #4ebbff;
}

.social--widget.style--1 .nav > li.vimeo > a:hover > span.icon,
.social--widget.style--2 .nav > li.vimeo > a,
.social--widget.style--4 .nav > li > a:hover > .fa-vimeo,
.social--widget.style--6 .nav > li.vimeo > a,
.social--widget.style--6 .nav > li.vimeo > a > .icon,
.social--widget.style--7 .nav > li.vimeo > a,
.social--widget.style--7 .nav > li.vimeo > a:hover > i,
.social--widget.style--5 .nav > li.vimeo > a,
.social--widget.style--5 .nav > li.vimeo > a:before,
#stickySocial ul.nav > li > a:hover > .fa-vimeo,
#stickySocial ul.nav > li > a > .fa-vimeo + span {
    background-color: #4ebbff;
}

.social--widget.style--1 .nav > li.vimeo > a > span.icon,
.social--widget.style--4 .nav > li > a > .fa-vimeo,
.social--widget.style--6 .nav > li.vimeo > a,
#stickySocial ul.nav > li > a:hover > .fa-vimeo,
#stickySocial ul.nav > li > a > .fa-vimeo + span:before {
    border-color: #4ebbff;
}

.social--widget.style--2 .nav > li.vimeo > a > .icon:before {
    border-right-color: #4ebbff;
}

/* YOUTUBE */
.social--widget.style--1 .nav > li.youtube > a > span.icon,
.social--widget.style--3 .nav > li > a > .fa-youtube-play,
.social--widget.style--4 .nav > li > a > .fa-youtube-play,
.social--widget.style--7 .nav > li.youtube > a,
.social--widget.style--5 .nav > li.youtube > a:hover {
    color: #bb0000;
}

.social--widget.style--1 .nav > li.youtube > a:hover > span.icon,
.social--widget.style--2 .nav > li.youtube > a,
.social--widget.style--4 .nav > li > a:hover > .fa-youtube-play,
.social--widget.style--6 .nav > li.youtube > a,
.social--widget.style--6 .nav > li.youtube > a > .icon,
.social--widget.style--7 .nav > li.youtube > a,
.social--widget.style--7 .nav > li.youtube > a:hover > i,
.social--widget.style--5 .nav > li.youtube > a,
.social--widget.style--5 .nav > li.youtube > a:before,
#stickySocial ul.nav > li > a:hover > .fa-youtube-play,
#stickySocial ul.nav > li > a > .fa-youtube-play + span {
    background-color: #bb0000;
}

.social--widget.style--1 .nav > li.youtube > a > span.icon,
.social--widget.style--4 .nav > li > a > .fa-youtube-play,
.social--widget.style--6 .nav > li.youtube > a,
#stickySocial ul.nav > li > a:hover > .fa-youtube-play,
#stickySocial ul.nav > li > a > .fa-youtube-play + span:before {
    border-color: #bb0000;
}

.social--widget.style--2 .nav > li.youtube > a > .icon:before {
    border-right-color: #bb0000;
}

/* DRIBBBLE */
.social--widget.style--1 .nav > li.dribbble > a > span.icon,
.social--widget.style--3 .nav > li > a > .fa-dribbble,
.social--widget.style--4 .nav > li > a > .fa-dribbble,
.social--widget.style--7 .nav > li.dribbble > a,
.social--widget.style--5 .nav > li.dribbble > a:hover {
    color: #ea4c89;
}

.social--widget.style--1 .nav > li.dribbble > a:hover > span.icon,
.social--widget.style--2 .nav > li.dribbble > a,
.social--widget.style--4 .nav > li > a:hover > .fa-dribbble,
.social--widget.style--6 .nav > li.dribbble > a,
.social--widget.style--6 .nav > li.dribbble > a > .icon,
.social--widget.style--7 .nav > li.dribbble > a,
.social--widget.style--7 .nav > li.dribbble > a:hover > i,
.social--widget.style--5 .nav > li.dribbble > a,
.social--widget.style--5 .nav > li.dribbble > a:before,
#stickySocial ul.nav > li > a:hover > .fa-dribbble,
#stickySocial ul.nav > li > a > .fa-dribbble + span {
    background-color: #ea4c89;
}

.social--widget.style--1 .nav > li.dribbble > a > span.icon,
.social--widget.style--4 .nav > li > a > .fa-dribbble,
.social--widget.style--6 .nav > li.dribbble > a,
#stickySocial ul.nav > li > a:hover > .fa-dribbble,
#stickySocial ul.nav > li > a > .fa-dribbble + span:before {
    border-color: #ea4c89;
}

.social--widget.style--2 .nav > li.dribbble > a > .icon:before {
    border-right-color: #ea4c89;
}

/* LINKEDIN */
.social--widget.style--1 .nav > li.linkedin > a > span.icon,
.social--widget.style--3 .nav > li > a > .fa-linkedin,
.social--widget.style--4 .nav > li > a > .fa-linkedin,
.social--widget.style--7 .nav > li.linkedin > a,
.social--widget.style--5 .nav > li.linkedin > a:hover {
    color: #0077b5;
}

.social--widget.style--1 .nav > li.linkedin > a:hover > span.icon,
.social--widget.style--2 .nav > li.linkedin > a,
.social--widget.style--4 .nav > li > a:hover > .fa-linkedin,
.social--widget.style--6 .nav > li.linkedin > a,
.social--widget.style--6 .nav > li.linkedin > a > .icon,
.social--widget.style--7 .nav > li.linkedin > a,
.social--widget.style--7 .nav > li.linkedin > a:hover > i,
.social--widget.style--5 .nav > li.linkedin > a,
.social--widget.style--5 .nav > li.linkedin > a:before,
#stickySocial ul.nav > li > a:hover > .fa-linkedin,
#stickySocial ul.nav > li > a > .fa-linkedin + span {
    background-color: #0077b5;
}

.social--widget.style--1 .nav > li.linkedin > a > span.icon,
.social--widget.style--4 .nav > li > a > .fa-linkedin,
.social--widget.style--6 .nav > li.linkedin > a,
#stickySocial ul.nav > li > a:hover > .fa-linkedin,
#stickySocial ul.nav > li > a > .fa-linkedin + span:before {
    border-color: #0077b5;
}

.social--widget.style--2 .nav > li.linkedin > a > .icon:before {
    border-right-color: #0077b5;
}

/* PINTEREST */
.social--widget.style--1 .nav > li.pinterest > a > span.icon,
.social--widget.style--3 .nav > li > a > .fa-pinterest-p,
.social--widget.style--4 .nav > li > a > .fa-pinterest-p,
.social--widget.style--7 .nav > li.pinterest > a,
.social--widget.style--5 .nav > li.pinterest > a:hover {
    color: #bd081c;
}

.social--widget.style--1 .nav > li.pinterest > a:hover > span.icon,
.social--widget.style--2 .nav > li.pinterest > a,
.social--widget.style--4 .nav > li > a:hover > .fa-pinterest-p,
.social--widget.style--6 .nav > li.pinterest > a,
.social--widget.style--6 .nav > li.pinterest > a > .icon,
.social--widget.style--7 .nav > li.pinterest > a,
.social--widget.style--7 .nav > li.pinterest > a:hover > i,
.social--widget.style--5 .nav > li.pinterest > a,
.social--widget.style--5 .nav > li.pinterest > a:before,
#stickySocial ul.nav > li > a:hover > .fa-pinterest-p,
#stickySocial ul.nav > li > a > .fa-pinterest-p + span {
    background-color: #bd081c;
}

.social--widget.style--1 .nav > li.pinterest > a > span.icon,
.social--widget.style--4 .nav > li > a > .fa-pinterest-p,
.social--widget.style--6 .nav > li.pinterest > a,
#stickySocial ul.nav > li > a:hover > .fa-pinterest-p,
#stickySocial ul.nav > li > a > .fa-pinterest-p + span:before {
    border-color: #bd081c;
}

.social--widget.style--2 .nav > li.pinterest > a > .icon:before {
    border-right-color: #bd081c;
}

/* 4.4. SUBSCRIBE WIDGET */
.subscribe--widget {
    padding: 30px 20px;
    background-color: #f8f8f8;
}

.subscribe--widget .content {
    margin-top: -7px;
    margin-bottom: 26px;
}

.subscribe--widget .content img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.subscribe--widget .form-control {
    height: 40px;
    padding-top: 7px;
    padding-bottom: 7px;
    background-color: #eee;
    border-width: 0;
}

.subscribe--widget .form-control + .form-control {
    margin-top: 20px;
}

.subscribe--widget .btn {
    min-width: 50px;
    padding: 6px 16px;
}

.subscribe--widget .form-control + .btn {
    margin-top: 20px;
}

.subscribe--widget .status {
    display: none;
    padding-top: 13px;
}

/* 4.5. LIST WIDGET */
.list--widget {
    background-color: #f8f8f8;
}

.list--widget-nav {
    padding: 20px 20px 15px;
    color: #999;
}

.list--widget-nav > .nav > li {
    border: 1px solid #eee;
    vertical-align: middle;
    -webkit-transition: border-color .25s, background-color .25s ease-in-out;
            transition: border-color .25s, background-color .25s ease-in-out;
}

.list--widget-nav > .nav > li + li {
    border-left-width: 0;
}

.list--widget-nav > .nav > li.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.list--widget-nav .nav > li > a {
    padding: 5px;
    line-height: 18px;
}

.list--widget-nav ul.nav > li.active > a {
    color: #fff;
}

.list--widget .post--items > .nav {
    padding-top: 20px;
    padding-bottom: 20px;
}

.list--widget-nav + .post--items > .nav {
    border-top: 1px solid #eee;
}

.list--widget .post--items > .nav > li {
    padding-left: 20px;
    padding-right: 20px;
}

.list--widget .preloader {
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.list--widget-2 .post--item.post--layout-3 .post--img .thumb,
.list--widget-2 .post--item.post--layout-4 .post--img .thumb {
    max-width: 70px;
    border: 2px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}

.list--widget-2 .post--info .title .h4:before {
    content: "\f10d";
    margin-left: 1px;
    margin-right: 9px;
    color: #999;
    font-family: "FontAwesome";
}

.list--widget-2 .post--info .meta > li:first-child {
    color: #555;
}

/* 4.6. POLL WIDGET */
.poll--widget {
    position: relative;
    background-color: #f8f8f8;
}

.poll--widget .title {
    padding: 12px 20px 13px;
    border-bottom: 1px solid #eee;
}

.poll--widget .title .h4 {
    margin: 0;
    color: #222;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.poll--widget .options {
    padding: 14px 20px 20px;
}

.poll--widget .checkbox,
.poll--widget .radio {
    margin: 0;
}

.poll--widget .checkbox + .checkbox,
.poll--widget .radio + .radio {
    margin-top: 18px;
}

.poll--widget .checkbox:before,
.poll--widget .checkbox:after,
.poll--widget .radio:before,
.poll--widget .radio:after {
    content: " ";
    display: table;
}

.poll--widget .checkbox:after,
.poll--widget .radio:after {
    clear: both;
}

.poll--widget .checkbox label,
.poll--widget .checkbox p,
.poll--widget .radio label,
.poll--widget .radio p {
    float: left;
    width: 50%;
}

.poll--widget .checkbox label,
.poll--widget .radio label {
    display: block;
    position: relative;
    padding-left: 22px;
    padding-right: 5px;
}

.poll--widget .checkbox label span:before,
.poll--widget .radio label span:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -6px;
    width: 12px;
    height: 12px;
    padding: 0 0 1px 1px;
    color: #222;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-family: "FontAwesome";
    font-size: 9px;
    line-height: 9px;
}

.poll--widget .radio label span:before {
    content: " ";
    border-radius: 50%;
    border-width: 4px;
    border-color: #eee;
}

.poll--widget .radio label input:checked + span:before {
    background-color: #222;
}

.poll--widget .checkbox label input:checked + span:before {
    content: "\f00c";
}

.poll--widget .checkbox label input,
.poll--widget .radio label input {
    display: none;
}

.poll--widget .checkbox p,
.poll--widget .radio p {
    display: block;
    position: relative;
    text-align: right;
}

.poll--widget .checkbox p:before,
.poll--widget .checkbox p span,
.poll--widget .radio p:before,
.poll--widget .radio p span {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    right: 36px;
    height: 12px;
    margin-top: -6px;
}

.poll--widget .checkbox p:before,
.poll--widget .radio p:before {
    border: 1px solid #ccc;
}

.poll--widget .checkbox p span,
.poll--widget .radio p span {
    width: 0%;
    background-color: var(--primary-color);
    -webkit-transition: width .25s ease-in-out;
            transition: width .25s ease-in-out;
}

.poll--widget .options .btn {
    margin-top: 34px;
}

.poll--widget .preloader {
    display: none;
}

/* 4.7. ABOUT WIDGET */
.about--widget .action {
    margin-top: 16px;
}

.about--widget > .nav {
    font-size: 0;
    line-height: 0;
}

.about--widget .action + .nav {
    margin-top: 8px;
    padding-top: 11px;
    border-top: 1px solid #333;
}

.about--widget > .nav > li + li {
    margin-top: 10px;
}

.about--widget > .nav > li > .fa {
    min-width: 14px;
    margin-right: 8px;
    font-size: 14px;
    line-height: 24px;
}

.bg--color-2 .about--widget > .nav > li > .fa {
    color: #fff;
}

.about--widget > .nav > li > a,
.about--widget > .nav > li > span {
    display: inline-block;
    padding: 0;
    font-size: 14px;
    line-height: 24px;
}

/* 4.8. LINKS WIDGET */
.links--widget .nav > li + li {
    margin-top: 5px;
}

.links--widget .nav > li > a {
    padding: 0 0 1px 12px;
    border-bottom: 1px dotted #333;
}

.links--widget .nav > li > a:before {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -12px;
    font-family: "FontAwesome";
}

/* 4.9. NAV WIDGET */
.nav--widget {
    color: #999;
    background-color: #f8f8f8;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.nav--widget .nav > li + li {
    border-top: 1px solid #eee;
}

.nav--widget .nav > li > a {
    padding: 12px 20px 13px;
    overflow: hidden;
    z-index: 0;
}

.nav--widget .nav > li > a span {
    display: block;
    float: left;
    padding-right: 6px;
    background-color: #f8f8f8;
}

.nav--widget .nav > li > a span + span {
    float: right;
    padding-right: 0;
    padding-left: 8px;
}

.nav--widget .nav > li > a span + span:before {
    content: " ";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-bottom: 2px dotted;
    z-index: -1;
}

/* 4.10. TAGS WIDGET */
.tags--widget {
    padding: 20px 20px 10px;
    background-color: #f8f8f8;
}

.tags--widget .nav {
    color: #999;
    font-size: 0;
    line-height: 0;
    text-transform: uppercase;
}

.tags--widget .nav > li {
    display: inline-block;
}

.tags--widget .nav > li > a {
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 0 10px;
    border: 1px solid;
    font-size: 12px;
    line-height: 22px;
}

.tags--widget .nav > li > a:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.tags--widget .nav > li > a:before,
.tags--widget .nav > li > a:after {
    content: " ";
    display: table;
}

.tags--widget .nav > li > a:after {
    clear: both;
}

.tags--widget .nav > li > a > span {
    float: right;
    display: block;
    position: relative;
    margin: -1px -11px -1px 7px;
    padding: 1px 8px;
    color: #fff;
    background-color: var(--primary-color);
    z-index: 0;
}

.tags--widget .nav > li > a > span:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.08;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=8)";
    z-index: -1;
}

.tags--widget.style--2 .nav > li > a {
    padding: 1px 11px;
    color: #fff;
    border-width: 0;
}

.tags--widget.style--2 .nav > li > a:hover,
.tags--widget.style--2 .nav > li > a:focus {
    background-color: #222;
}

.tags--widget.style--4 .nav {
    margin-left: -10px;
    margin-right: -10px;
}

.tags--widget.style--4 ul.nav > li > a {
    margin-left: 10px;
    margin-right: 10px;
    padding: 0;
    background-color: transparent;
    border-width: 0;
    font-size: 14px;
    line-height: 18px;
}

.tags--widget.style--4 .nav > li > a:hover {
    color: var(--primary-color);
}

/* 4.11. SEARCH WIDGET */
.widget > .search--widget {
    padding: 30px 20px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

.search--widget .form-control {
    border-color: #eee;
}

.search--widget .input-group {
    padding: 2px;
    z-index: 1;
}

.search--widget .input-group .form-control {
    border-width: 0;
}

.search--widget .input-group-btn {
    position: static;
    padding-right: 1px;
    color: #999;
    font-size: 14px;
    line-height: 24px;
}

.search--widget .input-group-btn:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #eee;
    -webkit-transition: border-color .25s;
            transition: border-color .25s;
    z-index: -1;
}

.search--widget input:focus + .input-group-btn:before {
    border-color: var(--primary-color);
}

.search--widget .input-group-btn button {
    padding: 4px 27px;
}

.search--widget .form-control + .btn {
    margin-top: 20px;
    padding: 5px 20px;
}

.search--widget button.dropdown-toggle {
    margin: -1px 0 -1px -1px;
    padding: 7px 12px;
    border-width: 0;
    background-color: #eee;
}

.search--widget .input-group-btn:first-child > .btn {
    margin-left: -1px;
    margin-right: 0;
}

.search--widget button.dropdown-toggle:hover {
    background-color: var(--primary-color);
}

.search--widget .dropdown-menu {
    padding: 0 0 2px;
}

.search--widget li label {
    display: block;
    padding: 3px 13px;
    margin-bottom: 0;
    font-weight: 600;
    cursor: pointer;
}

.search--widget li label input {
    display: none;
}

.search--widget li label span {
    display: block;
    -webkit-transition: color .25s;
    transition: color .25s;
}

.search--widget li label span:hover,
.search--widget li label input:checked + span {
    color: var(--primary-color);
}

/* 4.12. CART WIDGET */
.cart--widget {
    padding: 20px 0;
    color: #999;
    background-color: #f8f8f8;
}

.cart--widget li {
    padding-left: 20px;
    padding-right: 35px;
}

.cart--widget li + li {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cart--widget .img {
    float: left;
    max-width: 80px;
    margin-right: 10px;
}

.cart--widget .img a {
    display: block;
    position: relative;
    z-index: 0;
}

.cart--widget .img a:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
    opacity: 0.35;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=35)";
    -webkit-transition: opacity .25s ease-in-out;
            transition: opacity .25s ease-in-out;
    z-index: 1;
}

.cart--widget .img a:hover:before {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}

.cart--widget .info .h4 {
    margin: -8px 0 0;
    color: #222;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.cart--widget .info .h4 a {
    display: inline;
}

.cart--widget .info {
    overflow: hidden;
}

.cart--widget .info p {
    margin-top: 3px;
}

.cart--widget .remove {
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -12px;
    padding: 0;
}

.cart--widget li + li .remove {
    margin-top: -2px;
}

.cart--widget .footer {
    margin-top: 20px;
    padding: 20px 20px 0;
    border-top: 1px solid #eee;
}

.cart--widget .footer .amount {
    margin-top: -3px;
}

.cart--widget .footer .amount p {
    float: left;
    margin-bottom: 18px;
    color: #222;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.cart--widget .footer .amount p + p {
    float: right;
    color: var(--primary-color);
    font-size: 26px;
    font-weight: 700;
}

.cart--widget .footer .actions {
    border-top: 1px solid #eee;
}

.cart--widget .footer .actions .btn {
    margin-top: 20px;
}

.cart--widget .footer .actions .btn-primary {
    float: right;
}

/* 4.13. TWITTER WIDGET */
.twitter--widget {
    border: 1px solid #f8f8f8;
    font-size: 0;
    line-height: 0;
}

/* 4.14. FLICKER WIDGET */
.flicker--widget {
    padding: 15px;
    background-color: #f8f8f8;
}

div#flickr_badge_wrapper {
    width: 100%;
}

.flicker--widget img {
    width: 72px;
    height: 72px;
}

.flicker--widget a[href="https://www.flickr.com/"] {
    display: block;
    padding: 0 5px;
    text-align: center;
}

/* 4.15. PROFILE WIDGET */
.profile--widget {
    background-color: #f8f8f8;
}

.profile--widget .img img {
    border-radius: 50%;
}

.profile--widget .social {
    margin-bottom: 0;
}

/*------------------------------------*\
    5. HEADER SECTION
\*------------------------------------*/
/* 5.1. HEADER TOPBAR */
.header--topbar {
    padding: 13px 0 6px;
    color: #000;
    font-size: 0;
    line-height: 0;
    background-color:#f9f9f9;
    border-bottom:1px solid #e9e9e9;
    box-shadow:0px 1px 14px -6px rgba(0,0,0,0.40);
}

.header--topbar.bg--color-1 {
    color: #fff;
}

.header--style-6 .header--topbar {
    border-bottom: 1px solid #e9e9e9;
}

.header--topbar .nav {
    display: inline-block;
    margin: 0 -10px 0px 15px;
    padding-left: 5px;
    color:#000;
    font-size: 14px;
    line-height: 24px;
}

.header--topbar.bg--color-1 .nav {
    border-color: rgba(255, 255, 255, 0.75);
}

.header--style-6 .header--topbar .nav {
    border-color: #ddd;
}

.header--topbar .nav:first-child {
    margin-left: -10px;
    padding-left: 0;
    border-left-width: 0;
}

.header--topbar .nav > li {
    float: left;
    margin: 0 10px;
}

.header--topbar .nav > li > a {
    padding: 0;
}

.header--topbar .nav > li > a {
    -webkit-transition: opacity .25s;
            transition: opacity .25s;
}

.header--topbar ul.nav > li > a:hover,
.header--topbar ul.nav > li.open > a {
    color: inherit;
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

.header--topbar .dropdown-menu {
    min-width: 105px;
    margin-top: 13px;
    margin-left: -15px;
    left: 0;
}

.header--topbar.bg--color-1 .dropdown-menu {
    color: #999;
}

.header--topbar .dropdown-menu > li > a {
    padding: 5px 15px;
}

.header--topbar-action {
    color: #fff;
}

.header--style-6 .header--topbar-action {
    color: inherit;
}

/* 5.2. HEADER MAINBAR */
.header--mainbar {
    padding: 20px 0;
}

.header--style-7 .header--mainbar,
.header--style-8 .header--mainbar {
    border-bottom: 1px solid #eee;
}

.header--logo {
    font-size: 0;
    line-height: 0;
}

.header--logo .h1 {
    display: inline-block;
    margin: 0;
    color: #1d1d1d;
    font-weight: 700;
}

.header--logo a {
    display: table-cell;
    height: 90px;
    vertical-align: middle;
}

.header--style-2 .header--logo a,
.header--style-8 .header--logo a {
    height: auto;
}

/* 5.3. HEADER NAVBAR */
.header--navbar {
    margin-bottom: 0;
    border-style: solid;
    border-width: 2px 0 0;
    border-radius: 0;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
    -webkit-transition: box-shadow .25s ease-in-out;
    transition: box-shadow .25s ease-in-out;
}

.header--style-6 .header--navbar {
    border-top-width: 0;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1);
}

.header--style-7 .header--navbar,
.header--style-8 .header--navbar {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header--style-7 .is-sticky .header--navbar,
.header--style-8 .is-sticky .header--navbar {
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
}

.header--navbar .container {
    position: relative;
}

.header--navbar-inner {
    padding: 0 15px;
}

.header--style-5 .navbar-header {
    float: none;
}

.header--navbar .navbar-toggle {
    margin: 12px 0 13px;
    background-color: #222;
    border-color: #222;
    border-radius: 0;
    -webkit-transition: border-color .55s, background-color .55s ease-in-out;
            transition: border-color .55s, background-color .55s ease-in-out;
}

.header--style-5 .navbar-toggle {
    display: block;
    position: absolute;
    top: 0;
    left: 15px;
    margin-top: 28px;
    margin-bottom: 28px;
}

.header--navbar .navbar-toggle.collapsed {
    background-color: transparent;
    border-color: #222;
}

.header--style-6 .navbar-toggle.collapsed {
    border-color: inherit;
}

.header--navbar.bg--color-1 .navbar-toggle.collapsed {
    border-color: #fff;
}

.header--navbar .navbar-toggle .icon-bar {
    background-color: #fff;
    border-radius: 0;
}

.header--navbar .navbar-toggle.collapsed .icon-bar {
    background-color: #222;
}

.header--style-6 .navbar-toggle.collapsed .icon-bar {
    background-color: #fff;
}

.header--navbar.bg--color-1 .navbar-toggle.collapsed .icon-bar {
    background-color: #fff;
}

.header--navbar .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
}

.header--style-5 .navbar-collapse {
    display: block !important;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 250px;
    height: auto !important;
    margin: 0;
    color: #777;
    background-color: #fff;
    border-width: 0;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
    overflow: visible !important;
    -webkit-transition: left .55s ease-in-out;
            transition: left .55s ease-in-out;
    z-index: 999;
}

.header--style-5 .navbar-collapse:before {
    content: "\f00d";
    position: absolute;
    top: 0;
    right: -40px;
    width: 40px;
    color: #fff;
    background-color: var(--primary-color);
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.2);
    font-family: "FontAwesome";
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 9999;
}

.header--style-5 .navbar-collapse.in {
    left: 0;
}

/* 5.3.1. HEADER MENU LINKS */
.header--menu-links {
    font-size: 16px;
    line-height: 26px;
}

.header--menu-links > li > a {
    padding: 18px 15px 19px;
    border-bottom: 2px solid transparent;
}

.header--style-4 .header--menu-links > li > a {
    padding-top: 34px;
    padding-bottom: 34px;
}

.header--menu-links > li > a:hover,
.header--menu-links > li.active > a,
.header--menu-links > li.open > a,
.header--menu-links > li.open > a:hover,
.header--menu-links > li.open > a:focus {
    border-bottom-color: var(--primary-color);
}

.bg--color-1 .header--menu-links > li > a:hover,
.bg--color-1 .header--menu-links > li.active > a,
.bg--color-1 .header--menu-links > li.open > a,
.bg--color-1 .header--menu-links > li.open > a:hover,
.bg--color-1 .header--menu-links > li.open > a:focus {
    border-bottom-color: inherit;
}

ul.header--menu-links.nav > li > a:hover,
ul.header--menu-links.nav > li.active > a,
ul.header--menu-links.nav > li.active > a:hover,
ul.header--menu-links.nav > li.open > a,
ul.header--menu-links.nav > li.open > a:hover,
ul.header--menu-links.nav > li.open > a:focus {
    color: inherit;
}

.header--menu-links > .dropdown > .dropdown-menu {
    color: #555;
    font-size: 16px;
    line-height: 26px;
}

.header--style-5 .header--menu-links {
    float: none;
    height: 100%;
    margin: 0;
    padding-bottom: 5px;
    overflow: auto;
}

.header--style-5 .header--menu-links > li {
    float: none;
}

.header--style-5 .header--menu-links > li > a {
    padding-top: 12px;
    padding-bottom: 10px;
}

.header--style-5 .header--menu-links > .dropdown > .dropdown-menu {
    float: none;
    position: relative !important;
    border-bottom-width: 0;
    box-shadow: none;
}

.header--style-5 .header--menu-links > .megamenu > .dropdown-menu {
    left: 0;
    right: 0;
    padding: 0;
    border-bottom-width: 1px;
}

.header--style-5 .header--menu-links > .megamenu.filter > .dropdown-menu,
.header--style-5 .header--menu-links > .megamenu.posts > .dropdown-menu {
    border-bottom-width: 0;
}

.header--style-5 .header--menu-links > .megamenu.filter > .dropdown-toggle > i,
.header--style-5 .header--menu-links > .megamenu.posts > .dropdown-toggle > i,
.header--style-5 .header--menu-links > .megamenu.filter > .dropdown-menu,
.header--style-5 .header--menu-links > .megamenu.posts > .dropdown-menu {
    display: none;
}

.header--style-5 .header--menu-links > .megamenu > .dropdown-menu > .dropdown {
    float: none;
    margin: 0;
    width: 100%;
}

.header--style-5 .header--menu-links > .megamenu > .dropdown-menu > .dropdown > a {
    padding-left: 20px;
    padding-right: 20px;
}

.header--style-5 .header--menu-links > .megamenu > .dropdown-menu > .dropdown > .dropdown-menu > li > a {
    padding-left: 20px;
    padding-right: 20px;
}

.header--style-5 .header--menu-links > .megamenu > .dropdown-menu > li > .row {
    margin: 0;
}

.header--style-5 .header--menu-links > .megamenu > .dropdown-menu > li > .row > div {
    padding: 0;
}

.header--style-5 .dropdown-menu > .dropdown > .dropdown-menu {
    float: none;
    position: relative;
    top: 1px;
    left: 0;
    width: 100%;
    border-bottom-width: 1px;
    box-shadow: none;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.header--style-5 .dropdown-menu > .dropdown > .dropdown-menu > li > a {
    padding-left: 30px;
    padding-right: 30px;
}

/* 5.3.2. HEADER MEGAMENU */
.header--menu-links > .megamenu {
    position: static;
}

.header--menu-links > .megamenu > .dropdown-menu {
    position: absolute !important;
    left: 15px;
    right: 15px;
    padding: 3px 10px 5px;
    font-size: 0;
    line-height: 0;
}

.header--menu-links > .megamenu > .dropdown-menu:before,
.header--menu-links > .megamenu > .dropdown-menu:after {
    content: " ";
    display: table;
}

.header--menu-links > .megamenu > .dropdown-menu:after {
    clear: both;
}

.header--menu-links > .megamenu > .dropdown-menu > .dropdown {
    float: left;
    margin: 0 10px;
}

.header--menu-links > .megamenu > .dropdown-menu > .dropdown + li {
    border-top-width: 0;
}

.header--menu-links > .megamenu > .dropdown-menu > .dropdown > a {
    padding-left: 0;
    padding-right: 0;
    color: #222;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.header--menu-links > .megamenu > .dropdown-menu > .dropdown > .dropdown-menu {
    display: block;
    float: none;
    position: relative;
    left: 0;
    right: 0;
    padding: 0;
    border-bottom-width: 0;
    box-shadow: none;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.header--menu-links > .megamenu > .dropdown-menu > .dropdown > .dropdown-menu > li > a {
    padding-left: 0;
    padding-right: 0;
}

/* 5.3.3. HEADER MEGAMENU FILTER */
.megamenu--filter {
    margin: 2px -10px 0;
    font-size: 16px;
    line-height: 26px;
}

.megamenu--filter .nav > li + li {
    border-top: 1px solid #eee;
}

.megamenu--filter .nav > li > a {
    padding: 7px 20px 8px;
}

.megamenu--filter .nav > li > a > .fa {
    margin-left: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .25s, margin .25s ease-in-out;
            transition: opacity .25s, margin .25s ease-in-out;
}

.megamenu--filter .nav > li > a:hover > .fa,
.megamenu--filter .nav > li.active > a > .fa {
    margin-left: 5px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/* 5.3.4. HEADER MEGAMENU POSTS */
.megamenu--posts {
    position: relative;
    margin: 17px 3px 20px;
    z-index: 0;
}

.megamenu--posts > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.megamenu--posts > ul > li {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.megamenu--posts > ul > li > .img {
    position: relative;
    z-index: 0;
}

.megamenu--posts > ul > li > .img a {
    display: block;
    position: relative;
    z-index: 0;
}

.megamenu--posts > ul > li > .img a.thumb:before {

}

.megamenu--posts > ul > li > .img a.cat {
    display: inline-block;
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0 10px;
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
    z-index: 0;
}

.megamenu--posts > ul > li > .img a.cat:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    -webkit-transition: background-color .25s ease-in-out;
            transition: background-color .25s ease-in-out;
    z-index: -1;
}

.megamenu--posts > ul > li > .img a.cat:hover:before {
    background-color: var(--primary-color);
}

.megamenu--posts > ul > li > .img a.icon {
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    padding-bottom: 2px;
    color: #fff;
    font-size: 16px;
    line-height: 34px;
    text-align: center;
    z-index: 0;
}

.megamenu--posts > ul > li > .img a.icon:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    -webkit-transition: background-color .25s ease-in-out;
            transition: background-color .25s ease-in-out;
    z-index: -1;
}

.megamenu--posts > ul > li > .img a.icon:hover:before {
    background-color: #000;
}

.megamenu--posts > ul > li > .title {
    display: block;
    margin: -5px 0 -7px;
    color: #222;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}

.megamenu--posts > ul > li:hover > .title {
    color: var(--primary-color);
}

.megamenu--posts > ul > li > .img + .title {
    margin-top: 10px;
}

.megamenu--posts .preloader {
    display: none;
    bottom: -5px;
    z-index: 1;
}

.megamenu--posts .preloader:before {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}

/* 5.3.5. HEADER MEGAMENU PAGINATION */
.megamenu--pagination {
    margin-top: 44px;
    margin-bottom: 8px;
    color: #999;
    text-align: center;
}

.megamenu--pagination a {
    margin: 0 5px;
    font-size: 16px;
    line-height: 26px;
}

.megamenu--pagination .tooltip-inner {
    padding: 5px 7px 4px;
    background-color: #222;
    border-radius: 0;
}

.megamenu--pagination .tooltip-arrow {
    border-top-color: #222;
}

/* 5.3.6. HEADER SEARCH FORM */
.header--search-form {
    position: relative;
    min-width: 32px;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-align: right;
    z-index: 1;
}

.header--style-4 .header--search-form {
    margin-top: 16px;
    margin-bottom: 16px;
}

.header--style-5 .header--search-form {
    position: absolute;
    top: 0;
    right: 15px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.header--search-form .form-control {
    display: block;
    position: absolute;
    top: 11px;
    right: 0;
    width: 0;
    background-color: #f0f0f0;
    border: 0;
    border-radius: 20px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition-property: width, opacity, visibility;
            transition-property: width, opacity, visibility;
    -webkit-transition-duration: .55s;
            transition-duration: .55s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
    z-index: 0;
}

.header--search-form.active .form-control {
    width: 220px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}

.header--search-form .btn {
    position: relative;
    padding: 15px 0;
    background-color: transparent;
    font-size: 16px;
    line-height: 26px;
    -webkit-transition: color .35s, padding .35s ease-in-out;
            transition: color .35s, padding .35s ease-in-out;
    outline: 0;
    z-index: 1;
}

.header--search-form .btn:hover,
.header--search-form .btn:focus {
    color: inherit;
}

.header--search-form.active .btn {
    padding-right: 15px;
    color: #999;
    box-shadow: none;
    outline: 0;
}

.header--search-form.active .btn:hover,
.header--search-form.active .btn:focus {
    color: #999;
}

/*------------------------------------*\
    6. BANNER SECTION
\*------------------------------------*/
.banner--content .title .h2 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.banner--content .sub-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.banner--section .buttons {
    font-size: 0;
    line-height: 0;
}

.banner--section .buttons .btn {
    min-width: 150px;
    margin: 15px 10px 0;
}

/*------------------------------------*\
    7. FEATURES SECTION
\*------------------------------------*/
/* 7.1. FEATURE ITEM */
.feature--item .icon {
    width: 50px;
    margin-right: 20px;
    color: #fff;
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-size: 24px;
    line-height: 50px;
    text-align: center;
}

.feature--item .info {
    overflow: hidden;
}

.feature--item .title .h3 {
    margin: 11px 0 0;
    color: #222;
    font-weight: 600;
}

.feature--item .content {
    margin-top: 7px;
    font-size: 16px;
    line-height: 26px;
}

/* 7.2. FEATURE CONTENT */
.feature--content .title {
    margin-bottom: 17px;
    color: #222;
}

.feature--content .title .h3 {
    margin: 0;
}

/*------------------------------------*\
    8. MAIN CONTENT SECTION
\*------------------------------------*/
/* 8.1. MAIN CONTENT NAVBAR */
.posts--filter-bar .nav {
    margin-top: 5px;
    color: #999;
    font-size: 0;
    line-height: 0;
    text-align: center;
}

.posts--filter-bar .nav > li {
    display: inline-block;
    margin-top: 15px;
}

.posts--filter-bar .nav > li > a {
    position: relative;
    padding: 0 20px 7px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    z-index: 0;
}

.posts--filter-bar .nav > li > a > i {
    display: block;
    margin-bottom: 4px;
    -webkit-transition: color .25s, border-color .25s, background-color .25s ease-in-out;
    transition: color .25s, border-color .25s, background-color .25s ease-in-out;
}

.posts--filter-bar .nav > li > a:before {
    content: " ";
    position: absolute;
    top: 3px;
    left: 0;
    right: 0;
    bottom: 0;
    border-style: solid;
    border-width: 0 1px 0 0;
    border-color: #f0f0f0;
}

.posts--filter-bar .nav > li:first-child > a {
    padding-left: 0;
}

.posts--filter-bar .nav > li:last-child > a {
    padding-right: 0;
}

.posts--filter-bar .nav > li:last-child > a:before {
    border-right-width: 0;
}

.posts--filter-bar.style--2 .nav > li > a {
    padding: 13px 20px 7px;
}

.posts--filter-bar.style--2 .nav > li > a:before {
    border-width: 1px 1px 0;
}

.posts--filter-bar.style--2 .nav > li + li > a:before {
    border-left-width: 0;
}

.posts--filter-bar.style--3 .nav > li > a > i {
    width: 35px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    background-color: var(--primary-color);
    line-height: 35px;
}

.posts--filter-bar.style--3 .nav > li > a:hover > i {
    background-color: #222;
}

.posts--filter-bar.style--4 .nav > li > a > i {
    width: 35px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #ddd;
    line-height: 33px;
}

.posts--filter-bar.style--4 .nav > li > a:hover > i {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.posts--filter-bar.style--5 .nav > li > a {
    padding: 13px 20px 7px;
    font-size: 0;
    line-height: 0;
}

.posts--filter-bar.style--5 .nav > li > a:before {
    border-width: 1px 1px 0;
}

.posts--filter-bar.style--5 .nav > li + li > a {
    margin-left: -1px;
}

.posts--filter-bar.style--5 .nav > li > a > i,
.posts--filter-bar.style--5 .nav > li > a > span {
    font-size: 18px;
    line-height: 28px;
}

.posts--filter-bar.style--5 .nav > li > a > i {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 0;
}

/* 8.2. NEWS UPDATES BAR */
.news--ticker {
    margin-top: 20px;
}

.news--ticker:before,
.news--ticker:after {
    content: " ";
    display: table;
}

.news--ticker:after {
    clear: both;
}

.news--ticker .title {
    float: left;
    padding: 11px 30px 13px;
    color: #fff;
    background-color: var(--last-minute-left-block-color);
    font-size: 0;
    line-height: 0;
}

.news--ticker .title h2 {
    display: inline-block;
    margin: 0 10px 0 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.news--ticker .title span {
    color: #ccc;
    font-size: 14px;
    line-height: 24px;
}

.news-updates--list {
    direction: ltr;
    position: relative;
    max-height: 50px;
    padding: 0 12px;
    color: var(--last-minute-right-block-text-color);
    background-color: var(--last-minute-right-block-color);
    overflow: hidden;
    z-index: 0;
}

.news-updates--list:before,
.news-updates--list:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 12px;

    z-index: 1;
}

.news-updates--list:after {
    left: auto;
    right: 0;
}

.news-updates--list .nav {
    font-size: 0;
    line-height: 0;
}

.news-updates--list .nav li {
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
}

.news-updates--list .nav li + li {

}

.news-updates--list .nav li .h3 {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-updates--list .nav li .h3 a {
    display: flex;
    align-items:center;
    height:50px;
    font-size:18px;
    font-weight:600;

}

/* 8.3. MAIN CONTENT BREADCRUMB */
.main--breadcrumb {
    margin-top: 23px;
}

.main--breadcrumb .breadcrumb {
    padding: 0;
    color: #555;
    background-color: transparent;
    border-radius: 0;
}

.main--breadcrumb .breadcrumb {
    font-size: 0;
    line-height: 0;
}

.main--breadcrumb .breadcrumb .active {
    color: var(--primary-color);
}

.main--breadcrumb .breadcrumb li:before {
    padding: 0 3px 0 4px;
    font-size: 14px;
    line-height: 24px;
}

.main--breadcrumb .breadcrumb li a,
.main--breadcrumb .breadcrumb li span {
    font-size: 14px;
    line-height: 24px;
}

/* X.X. PAGE TITLE */
.page--title .h2 {
    margin-top: -9px;
    margin-bottom: 0;
    color: #222;
    font-weight: 600;
}

.bg--color-1 .page--title .h2,
.bg--color-2 .page--title .h2 {
    color: #fff;
}

.page--title .h2 span {
    color: var(--primary-color);
}

.page--title p {
    margin-top: 15px;
    margin-bottom: -5px;
}

.page--title .action {
    margin-top: 26px;
}

.page--title.lined .h2 {
    position: relative;
    padding-bottom: 11px;
    z-index: 0;
}

.page--title.lined .h2:before {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 60px;
    height: 2px;
    margin: 0 auto;
    background-color: var(--primary-color);
}

.bg--color-1 .page--title.lined .h2:before {
    background-color: #fff;
}

/* 8.5. POST ITEMS TITLE */
.post--items-title {
    position: relative;
    padding: 12px 57px 13px 0;
    border-top: 2px solid var(--primary-color);
    z-index: 0;
}

.post--items-title .h4 {
    position: relative;
    margin: 0;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 0;
}

.post--items-title .nav {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -15px;
    color: #999;
    font-size: 0;
    line-height: 0;
}

.post--items-title .nav a {
    padding: 0;
    font-size: 16px;
    line-height: 26px;
}

.post--items-title .nav span.divider {
    display: inline-block;
    margin: 0 5px;
    font-size: 16px;
    line-height: 26px;
}

.post--items-title .icon {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -14px;
    color: #999;
    font-size: 16px;
    line-height: 26px;
}

/* 8.6. POST ITEMS */
.post--items {
    position: relative;
    z-index: 0;
	clear:both;
}

.post--items.post--items-1 {
    margin-top: -15px;
}

.main--breadcrumb + .post--items.post--items-1 {
    margin-top: 0;
    padding-top: 10px;
}

.post--item.post--layout-3:before,
.post--item.post--layout-3:after,
.post--item.post--layout-4:before,
.post--item.post--layout-4:after {
    content: " ";
    display: table;
}

.post--item.post--layout-3:after,
.post--item.post--layout-4:after {
    clear: both;
}

.post--items.post--items-3 > .nav > li + li,
.post--items.post--items-4 > .nav > li > .nav > li + li {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.post--items.post--items-5 > .nav > li + li {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.post--item {
    position: relative;
    z-index: 0;
}

.post--items.post--items-1 .post--item {
    margin-top: 15px;
}

/*start*/
.left-post.post--item {height:440px;}
.left-post.post--item .post--img {height:100%;}
.left-post.post--item .post--img .thumb {height:100%;}
.left-post.post--item .post--img .thumb img {object-fit: cover;height:100%;}

.right-normal .post--item {height:212.52px;}
.right-normal .post--item .post--img {height:100%;}
.right-normal .post--item .post--img .thumb {height:100%;}
.right-normal .post--item .post--img .thumb img {object-fit: cover;height:100%;}

.right-wide .post--item {height:212.33px;}
.right-wide .post--item .post--img {height:100%;}
.right-wide .post--item .post--img .thumb {height:100%;}
.right-wide .post--item .post--img .thumb img {object-fit: cover;height:100%;}

.posts-one .post--items ul li:first-child .post--item {height:175.19px;}
.posts-one .post--items ul li:first-child .post--item .post--img, .posts-one .post--items ul li:first-child .post--item .thumb {height:100%;}
.posts-one .post--items ul li:first-child .post--item .thumb img {object-fit: cover;height:100%;}
.posts-one .post--items ul li.normal .post--item {}
.posts-one .post--items ul li.normal .post--item .thumb {height:95.83px;}
.posts-one .post--items ul li.normal .post--item .thumb img {object-fit: cover;height:100%;}

.posts-two .post--items ul li:first-child .post--item {height:175.19px;}
.posts-two .post--items ul li:first-child .post--item .post--img, .posts-two .post--items ul li:first-child .post--item .thumb {height:100%;}
.posts-two .post--items ul li:first-child .post--item .thumb img {object-fit: cover;height:100%;}
.posts-two .post--items ul li.normal .post--item .thumb {height:70px;}
.posts-two .post--items ul li.normal .post--item .thumb img {object-fit: cover;height:100%;}

.posts-three .post--items ul li:first-child .post--item .post--img .thumb {height:243.36px;}
.posts-three .post--items ul li:first-child .post--item .post--img .thumb img {object-fit: cover;height:100%;}
.posts-three .post--items ul li.normal .post--item .post--img .thumb {height:97.16px;}
.posts-three .post--items ul li.normal .post--item .post--img .thumb img {object-fit: cover;height:100%;}

.posts-four .post--items .post--item.top-post {height:370px;}
.posts-four .post--items .post--item.top-post .post--img {height:100%;}
.posts-four .post--items .post--item.top-post .post--img .thumb {height:100%;}
.posts-four .post--items .post--item.top-post .post--img img {object-fit: cover;height:100%;}
.posts-four .post--items .post--item.normal-post .post--img {height:70px;}
.posts-four .post--items .post--item.normal-post .post--img .thumb {height:100%;}
.posts-four .post--items .post--item.normal-post .post--img img {object-fit: cover;height:100%;}

.posts-five .post--items ul li .post--item {height:194.52px;}
.posts-five .post--items ul li .post--item .post--img, .posts-five .post--items ul li .post--item .post--img .thumb {height:100%;}
.posts-five .post--items ul li .post--item .post--img .thumb img {height:100%;object-fit: cover;}

.tab-posts-sidebar .post--item .post--img .thumb {height:70px;}
.tab-posts-sidebar .post--item .post--img img {object-fit: cover;height:100%;}

.logged-in.admin-bar .sticky-wrapper.is-sticky .header--navbar {top:32px !important}

.post-texts {display:flex;flex-direction:column;overflow:hidden;}
.post-texts.unlimited {max-height:auto}

.sidebar-posts-one .post--item .post--img .thumb {height:70px;}
.sidebar-posts-one .post--item .post--img .thumb img {height:100%;object-fit:cover;}

.sidebar-posts-two .post--item .post--img .thumb {height:70px;}
.sidebar-posts-two .post--item .post--img .thumb img {height:100%;object-fit:cover;}

/*
.post-texts.one-line {max-height:23px}
.post-texts.two-line {max-height:38px}
.post-texts.three-line {max-height:66px}
.post-texts.four-line {max-height:96px}
.post-texts.five-line {max-height:113px}
*/

/* wide-headline line options */
.wide-headline .left-post .post-texts.one-line {max-height:23px}
.wide-headline .left-post .post-texts.two-line {max-height:47px}
.wide-headline .left-post .post-texts.three-line {max-height:71px}
.wide-headline .left-post .post-texts.four-line {max-height:95px}
.wide-headline .left-post .post-texts.five-line {max-height:121px}
.wide-headline .left-post .post-texts h2 {margin-bottom:2px !important;}
.wide-headline .right-post .post-texts.one-line {max-height:20px}
.wide-headline .right-post .post-texts.two-line {max-height:49px}
.wide-headline .right-post .post-texts.three-line {max-height:73px}
.wide-headline .right-post .post-texts.four-line {max-height:97px}
.wide-headline .right-post .post-texts.five-line {max-height:121px}
.wide-headline .right-post .post-texts h2 {margin-bottom:1px !important;}

/* posts-one line options */
.posts-one .top-post .post-texts.one-line {max-height:20px;}
.posts-one .top-post .post-texts.two-line {max-height:41px}
.posts-one .top-post .post-texts.three-line {max-height:63px}
.posts-one .top-post .post-texts.four-line {max-height:89px}
.posts-one .top-post .post-texts.five-line {max-height:113px}
.posts-one .top-post .post-texts h3 {margin-bottom:2px !important;}
.posts-one .normal-post .post-texts.one-line {max-height:18px;}
.posts-one .normal-post .post-texts.two-line {max-height:48px;}
.posts-one .normal-post .post-texts.three-line {max-height:72px;}
.posts-one .normal-post .post-texts.four-line {max-height:96px;}
.posts-one .normal-post .post-texts.five-line {max-height:120px;}

/* posts-two line options */
.posts-two .top-post .post-texts.one-line {max-height:20px;}
.posts-two .top-post .post-texts.two-line {max-height:41px}
.posts-two .top-post .post-texts.three-line {max-height:63px}
.posts-two .top-post .post-texts.four-line {max-height:89px}
.posts-two .top-post .post-texts.five-line {max-height:113px}
.posts-two .top-post .post-texts h3 {margin-bottom:2px !important;}
.posts-two .normal-post .post-texts.one-line {max-height:18px;}
.posts-two .normal-post .post-texts.two-line {max-height:48px;}
.posts-two .normal-post .post-texts.three-line {max-height:72px;}
.posts-two .normal-post .post-texts.four-line {max-height:96px;}
.posts-two .normal-post .post-texts.five-line {max-height:120px;}

/* posts-three line options */
.posts-three .top-post .post-texts.one-line {max-height:27px;}
.posts-three .top-post .post-texts.two-line {max-height:51px}
.posts-three .top-post .post-texts.three-line {max-height:75px}
.posts-three .top-post .post-texts.four-line {max-height:99px}
.posts-three .top-post .post-texts.five-line {max-height:123px}
.posts-three .top-post .post-texts h3 {margin-bottom:2px !important;}
.posts-three .normal-post .post-texts.one-line {max-height:24px;}
.posts-three .normal-post .post-texts.two-line {max-height:48px;}
.posts-three .normal-post .post-texts.three-line {max-height:72px;}
.posts-three .normal-post .post-texts.four-line {max-height:96px;}
.posts-three .normal-post .post-texts.five-line {max-height:120px;}

/* posts-four line options */
.posts-four .top-post .post-texts.one-line {max-height:26px;}
.posts-four .top-post .post-texts.two-line {max-height:47px}
.posts-four .top-post .post-texts.three-line {max-height:71px}
.posts-four .top-post .post-texts.four-line {max-height:95px}
.posts-four .top-post .post-texts.five-line {max-height:119px}
.posts-four .top-post .post-texts h2 {margin-bottom:2px !important;}
.posts-four .normal-post .post-texts.one-line {max-height:24px;}
.posts-four .normal-post .post-texts.two-line {max-height:48px;}
.posts-four .normal-post .post-texts.three-line {max-height:72px;}
.posts-four .normal-post .post-texts.four-line {max-height:96px;}
.posts-four .normal-post .post-texts.five-line {max-height:120px;}

/* posts-five line options */
.posts-five .post-texts.one-line {max-height:20px;}
.posts-five .post-texts.two-line {max-height:42px}
.posts-five .post-texts.three-line {max-height:65px}
.posts-five .post-texts.four-line {max-height:83px}
.posts-five .post-texts.five-line {max-height:108px}
.posts-five .post-texts h3 {margin-bottom:2px !important;}

/* posts-six */
.posts-six .top-post .post-texts.one-line {max-height:23px;}
.posts-six .top-post .post-texts.two-line {max-height:47px;}
.posts-six .top-post .post-texts.three-line {max-height:71px;}
.posts-six .top-post .post-texts.four-line {max-height:95px;}
.posts-six .top-post .post-texts.five-line {max-height:119px;}
.posts-six .top-post .post-texts h2 {margin-bottom:2px;}
.posts-six .normal-post .post-texts.one-line {max-height:17px;}
.posts-six .normal-post .post-texts.two-line {max-height:37px;}
.posts-six .normal-post .post-texts.three-line {max-height:57px;}
.posts-six .normal-post .post-texts.four-line {max-height:85px;}
.posts-six .normal-post .post-texts.five-line {max-height:119px;}
.posts-six .normal-post .post-texts h2 {margin-bottom:3px;}

/* tab-posts-sidebar */
.tab-posts-sidebar .post-texts.one-line {max-height:24px;}
.tab-posts-sidebar .post-texts.two-line {max-height:48px;}
.tab-posts-sidebar .post-texts.three-line {max-height:72px;}
.tab-posts-sidebar .post-texts.four-line {max-height:96px;}
.tab-posts-sidebar .post-texts.five-line {max-height:120px;}

/* .sidebar-posts-one */
.sidebar-posts-one .post-texts.one-line {max-height:24px;}
.sidebar-posts-one .post-texts.two-line {max-height:48px;}
.sidebar-posts-one .post-texts.three-line {max-height:72px;}
.sidebar-posts-one .post-texts.four-line {max-height:96px;}
.sidebar-posts-one .post-texts.five-line {max-height:120px;}

/* .sidebar-posts-two */
.sidebar-posts-two .post-texts.one-line {max-height:24px;}
.sidebar-posts-two .post-texts.two-line {max-height:48px;}
.sidebar-posts-two .post-texts.three-line {max-height:72px;}
.sidebar-posts-two .post-texts.four-line {max-height:96px;}
.sidebar-posts-two .post-texts.five-line {max-height:120px;}

/* posts-seven */
.posts-seven .post-texts.one-line {height:24px;}
.posts-seven .post-texts.two-line {height:48px;}
.posts-seven .post-texts.three-line {height:72px;}
.posts-seven .post-texts.four-line {height:96px;}
.posts-seven .post-texts.five-line {height:120px;}

/* related-posts */
.single .main--content .post--related .post-texts {height:65px;}
.single .main--content .post--related .post-texts h3 {margin-bottom:2px !important;}


body {
    transition: all .1s ease-out;
  }

.main-content--section .container {display:flex;flex-direction:column;}

.posts-seven .main--content .post--items .post--item .post--img {height:200px;}
.posts-seven .main--content .post--items .post--item .post--img .thumb {height:100%;}
.posts-seven .main--content .post--items .post--item .post--img .thumb img {height:100%;object-fit:cover;}

.posts-six .post--items .post--item.top-post .post--img {height:292px;}
.posts-six .post--items .post--item.top-post .post--img .thumb {height:100%;}
.posts-six .post--items .post--item.top-post .post--img .thumb img {height:100%;object-fit:cover;}

.posts-six .post--items .post--item.normal-post .post--img {height:194px;}
.posts-six .post--items .post--item.normal-post .post--img .thumb {height:100%;}
.posts-six .post--items .post--item.normal-post .post--img .thumb img {height:100%;object-fit:cover;}

/* posts-seven */
.post-items-wrapper {display: grid;grid-template-columns: repeat(3, minmax(0, 1fr));gap: 20px;}
.news-item {display:flex;flex-direction: column;}
.news-item .post--img {height:145px;}
.news-item .post--img .thumb {height:100%;}
.news-item .post--img .thumb img {height:100%;object-fit:cover;}
.news-item .post--info {padding:14px 16px 14px 16px;background-color:#eee;box-shadow: 0px 1px 2px 0px rgba(17,21,25,0.27);}
.news-item .post--info h2.h4 {font-size:16px;}
.news-item .post--info span {color:#666666}
.special-icon {position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:48px;height:48px;border-radius:100%;background-color:#000000a1;display:flex;align-items:center;justify-content:center;color:white;}

/* full-width-posts  */
.post-items-wrapper.full-width-posts {display:grid;grid-template-columns:repeat(4, 1fr);gap:20px;}

/* cat-page */
.cat-top-widget-area .main--content>div:last-child {padding-bottom:0 !important;}

.thumb.prev-next-post {width:80px;height:50px;}
.thumb.prev-next-post>img {width:100%;height:100%;object-fit:cover;}
.thumb.related-post {height:180px;}
.thumb.related-post>img {height:100%;object-fit:cover;}
.related-excerpt {max-height:96px;overflow:hidden;}

/**/
.comment--items .children li {list-style-type: none;margin-top:16px}
.comment-form-cookies-consent {display:inline-flex;align-items:center;}
.comment-form-cookies-consent>input {margin-top:0;}
.comment-form-cookies-consent>label {margin-bottom:0;margin-left:6px;}

/* wide-headline-two */
.wide-headline-two {position:relative;height:390px;}
.wide-headline-two .swiper {height:100%;}
.wide-headline-two .wht-item {position:relative;display:flex;height:100%;position:relative;}
.wide-headline-two .wht-item .wht-item--thumbnail {width:50%;}
.wide-headline-two .wht-item .wht-item--thumbnail.thumb-full {width:100%;}
.wide-headline-two .wht-item .wht-item--thumbnail img {height:100%;width:100%;object-fit:cover;}
.wide-headline-two .wht-item .wht-item--right {width:50%;}
.wide-headline-two .wht-item .wht-item--details {width:70%;box-sizing: border-box;position: absolute;top: 0;right: 0;bottom: 0;display: flex;justify-content: center;padding-left: 20%;text-align: right;z-index: 2;display:flex;justify-content:center;align-items:center;}
.wide-headline-two .wht-item .wht-item--shape {width:100%;height:100%;position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;}
.wide-headline-two .wht-item .wht-item--title {color:#ffffff;font-weight:bold;font-size:46px;line-height:1.2;text-align:right;padding:0 32px 50px 0;}
.wide-headline-two-pagination {position:absolute;bottom:0 !important;left:0 !important;width:38px !important;height:100% !important;background-color:var(--third-color);z-index:2;display:flex;flex-direction:column;justify-content: space-between;}
.wide-headline-two-pagination .swiper-pagination-bullet {display:flex;height:100% !important;width:100% !important;justify-content: center;align-items:center;position:relative;margin:0 !important;padding:0 !important;background:transparent !important;color:#000;font-size:18px;font-weight:600;border-radius:0 !important;opacity:1 !important;border-bottom:1px solid #cbcbcb;}
.wide-headline-two-pagination .swiper-pagination-bullet:last-child {border-bottom:none;}
.wide-headline-two-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {border-right:2px solid #fff;color:#fff;}
.wide-headline-two-pagination .swiper-pagination-bullet::after {position:absolute;right:-5px;top:50%;content:"";width: 0px;height: 0px;border-style: solid;border-width: 5px 0 5px 5px;transform: rotate(0deg);opacity:0;display:none;transform: translate(0%, -50%);}
.wide-headline-two-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {display:block;opacity:1;}
.wide-headline-two-pagination .swiper-pagination-bullet::before {position:absolute;right:-8px;top:50%;content:"";width: 0px;height: 0px;border-style: solid;border-width: 7px 0 7px 7px;border-color: transparent transparent transparent #fff;transform: rotate(0deg);opacity:0;display:none;transform: translate(0%, -50%);}
.wide-headline-two-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {display:block;opacity:1;}


.wide-headline-two.navigation-below .swiper {height:100%;}
.wide-headline-two.navigation-below .swiper-wrapper {height:412px;}
.wide-headline-two.navigation-below .wide-headline-two-pagination {width:100% !important;height:38px !important;flex-direction: row;}
.wide-headline-two.navigation-below .wide-headline-two-pagination .swiper-pagination-bullet {border-right:1px solid #cbcbcb}
.wide-headline-two.navigation-below .wide-headline-two-pagination .swiper-pagination-bullet:last-child {border-right:none}
.wide-headline-two.navigation-below .wide-headline-two-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {border-right:none;border-top:2px solid #fff;}
.wide-headline-two.navigation-below .wide-headline-two-pagination .swiper-pagination-bullet::after {position:absolute;left:50%;right:auto !important;top:-5px;content:"";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent #D00505 transparent;
    transform: rotate(0deg);
    opacity:0;display:none;transform: translate(-50%, 0%);}
.wide-headline-two.navigation-below .wide-headline-two-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {display:block;opacity:1;}
.wide-headline-two.navigation-below .wide-headline-two-pagination .swiper-pagination-bullet::before {position:absolute;left:50%;right:auto !important;top:-8px;content:"";
    width: 0px;height: 0px;   border-style: solid;
    border-width: 0 7px 7px 7px;
    border-color: transparent transparent #ffffff transparent;
    transform: rotate(0deg);
    opacity:0;display:none;transform: translate(-50%, 0%);}
.wide-headline-two.navigation-below .wide-headline-two-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {display:block;opacity:1;}
.home-middle-left .wide-headline-two .wht-item .wht-item--thumbnail {width: 100%;
    position: absolute;
    height: 100%;}
.home-middle-left .wide-headline-two {height:450px;}
.home-middle-left .wide-headline-two .wht-item .wht-item--details {width:55%;}
.home-middle-left .wide-headline-two .wht-item .wht-item--title {font-size:28px;}

/* weather-page */
.weather-page {padding:24px 0;}
.weather-page-header {padding:24px 0;background-color:#3a3a64;}
.wp-header-wrapper {display:grid;grid-template-columns:5fr 2fr 2fr 2fr 2fr;;gap:16px;}
.wp-header-box {background-color:#00000042;border-radius:5px;display:flex;flex-direction: column;}
.wp-header-box-title {color:#fff;padding:8px 16px;font-weight:600;background-color:#00000042;text-align:center;}
.wp-header-box-details {padding:0 16px 16px 16px;display:flex;justify-content:center;align-items:center;flex-direction:column;}
.weather-icon {max-width:75px;}
.wp-header-box-desc {color:#fff;text-transform: capitalize;}
.temp-text {color:#fff;font-size:16px;}
.temp-text b {opacity:0.45;font-weight:400;}
.current-city-middle {display:flex;justify-content:space-between;width:100%;align-items:center;}
.current-city-middle .temp {color:#fff;font-size:62px;font-weight:600;}
.current-other-boxes {display:flex;}

.current-other-boxes {display:flex;gap:12px;width:100%;}
.other-detail-item {background-color:#00000042;border-radius:5px;padding:8px 10px;display:flex;align-items:center;gap:6px;width:100%;}
.other-detail-item-icon {width:24px;display:flex;align-items:center;}
.other-detail-item-icon svg {color:#fff;}
.other-detail-item-icon img {width:36px}
.other-detail-item-text {width:calc(100% - 24px);display:flex;flex-direction:column;}
.other-detail-item-text>strong {color:#fff;font-size:13px;opacity:0.8;font-weight:500;height:17px;}
.other-detail-item-text>span {color:#fff;}

.weather-page-content {padding:24px 0 0 0;}
.wp-content-wrapper {display:flex;flex-direction: column;gap:24px;}
.wp-content-box {background-color:#d7d7d7;border-radius:5px;display:flex;flex-direction: column;}
.wp-content-box-title {padding:8px 16px;color:#000;font-weight:700;font-size:16px;border-bottom:1px solid #0000001a;}
.wp-content-datas {display:grid;padding:16px 16px;grid-template-columns: repeat(5, 1fr);gap:16px;}
.wp-content-datas .other-detail-item .other-detail-item-icon {border-radius:5px;justify-content:center;width:36px;height:36px;background-color:#00000029}
.wp-content-datas .other-detail-item .other-detail-item-text {width:calc(100% - 28px);padding-left:4px;}

.wp-header-box.current .wp-header-box-title-wrapper {position:relative;cursor:pointer;display:flex;justify-content:center;align-items:center;gap:4px;padding:8px 16px;background-color:#00000042;}
.wp-header-box.current .wp-header-box-title {padding:0 0;background-color:transparent;}
.city-list {   z-index:9;transition: .3s;
    -ms-transform: scale(.8);
    -moz-transform: scale(.8);
    -o-transform: scale(.8);
    -webkit-transform: scale(.8);
    transform: scale(.8); opacity: 0;
    visibility: hidden;position:absolute;left:40%;top:40px;list-style-type:none;display:flex;flex-direction:column;
    max-height:160px;overflow:auto;width:120px;background-color:#fff;border-radius:5px;margin:0;padding:0;}
.city-list li {width:100%;border-bottom:1px solid #e9e9e9;}
.city-list li a {display:flex;padding:2px 12px;color:#000;width:100%;}

.city-list.active {opacity: 1;visibility: visible;transform: scale(1);-webkit-transform: scale(1);
    -moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);}

/* width */
.city-list::-webkit-scrollbar {width:5px;}
  
/* Track */
.city-list::-webkit-scrollbar-track {background: #f1f1f1;}
  
/* Handle */
.city-list::-webkit-scrollbar-thumb {background: #888;}


/* fikstur-page */
.fikstur-page {padding:0 0 32px 0;}
.fikstur-page-header {}
.fp-header-wrapper {}
.fp-header-wrapper h1 {color:#000}
.fikstur-page-content {margin-top:16px;}
.fp-content-wrapper {display:flex;justify-content:space-between;background-color:#fff;border-radius:5px;overflow:hidden;}
.fp-content {width:calc(100% - 300px);}
.group {text-align:center;padding:16px 24px 16px 0;}
.group h2 {padding-bottom:15px;border-bottom:1px solid #eee;color:#000;font-weight:600;}
.match {display:grid;align-items:center;grid-template-columns:1fr 50px 20px 50px 1fr;padding:15px 0;border-bottom:1px solid #eee;line-height:24px;position:relative;}
.match .time {position:absolute;left:0;top:50%;transform:translateY(-50%);width:60px;font-weight:500;border:1px solid #dedede;background-color:#fafafa;}
.match .team1 {text-align:right;}
.match .score1, .match .image1 {text-align:right;}
.match .score {font-size:18px;font-weight:bold;}
.match .score2, .match .image2 {text-align:left;}
.match .score {font-size:18px;font-weight:bold;}
.match .team2 {text-align:left;}
.match .team {font-size:18px;}
.fp-sidebar {width:300px;background-color:#eee;padding:24px 24px;}
.fp-sidebar>strong {color:#000;margin-bottom:12px;font-size:24px;display:flex;width:100%;}
.lig-link-list {}
.lig-link-list ul {list-style-type:none;margin:0;padding:0;display:flex;flex-direction:column;}
.lig-link-list ul li {border-top:1px dotted #ddd;}
.lig-link-list ul li a {font-weight:600;width:100%;padding:4px 0;display:flex;}
.lig-link-list ul li a:hover {color:#000;}
.lig-link-list ul li.active a {color:#000;}

/* astroloji-page */
.astroloji-page {padding:24px 0 32px 0;}
.astroloji-page-header {}
.ap-header-wrapper {display:grid;grid-template-columns:repeat(12, 1fr);background-color:#d7d7d7;border-radius:5px;overflow:hidden;}
.ap-head-item {display:flex;flex-direction:column;justify-content:center; align-items:center;border-right:1px solid #c4c4c4;}
.ap-head-item-icon {height:70px;display:flex;align-items:center;justify-content:center;}
.ap-head-item span {color:#000;    width: 100%;display: flex;background-color: #00000017;justify-content: center;padding: 6px 0 6px 0;}
.ap-head-item:hover {background-color:#372861}
.ap-head-item:hover span {color:#fff;}
.ap-head-item:hover svg {color:#fff;}
.ap-head-item.active {background-color:#372861}
.ap-head-item.active span {color:#fff;}
.ap-head-item.active svg {color:#fff;}

.ap-head-item:last-child {border-right:none;}
.ap-head-item svg {color:#372861;width:32px;height:32px;}
.astroloji-page-content {padding:24px 0 0 0;}
.ap-content-wrapper {font-size:16px;}
.ap-content-wrapper.horoscope-detail {display:flex;justify-content: space-between;}
.ap-content-wrapper.horoscope-detail .ap-left {width:calc(100% - 300px);padding-right:24px;}
.ap-content-wrapper.horoscope-detail .ap-left h2 {color:#000;}
.ap-content-wrapper.horoscope-detail .ap-sidebar {width:300px;background-color:#eee;padding:24px 24px;}
.ap-content-wrapper.horoscope-detail .ap-sidebar h3 {margin-top:0;color:#000;margin-bottom:12px;font-size:24px;display:flex;width:100%;}
.ap-content-wrapper.horoscope-detail .ap-sidebar ul {display:flex;flex-direction:column;gap:4px;list-style-type:none;margin:0;padding:0;}
.ap-content-wrapper.horoscope-detail .ap-sidebar ul strong {color:#000;}

/* cryptos */
.crypto-table {width:100%;border-collapse:collapse;}
.crypto-table tr:nth-child(odd) {background: #fcfcfc;}
.crypto-table td, .crypto-table th {padding: 10px;vertical-align: middle;color:#000;font-size:16px;}
.crypto-table td, .crypto-table th {padding: 8px;border: 1px solid #e0e0e0;}
.crypto-table th {background: #eaeaea;}

/* namaz-vakitleri */
.vakitler-page {padding:24px 0 24px 0;}
.vakitler-page-header {background-color:#254f25;}
.nm-header-wrapper {padding:24px 0;display:grid;grid-template-columns:1fr 2fr 1fr;width:100%;gap:24px;}
.nm-header-date {background-color:#0000003b;border-radius:5px;width:100%;display:flex;flex-direction:column;
justify-content:center;align-items:center;padding:24px 16px;color:#fff;text-align:center;}
.nm-header-date span {font-size:16px;margin:6px 0 8px 0;text-transform:uppercase;}
.nm-header-date strong {font-size:26px;}
.nm-header-date svg {width:32px;height:32px;}
.nm-header-middle {}
.nm-header-selector {background-color:#0000003b;border-radius:5px;padding:16px 16px;display:flex;gap:16px;justify-content: center;}
.nm-selector {
    display:flex;
    position:relative;
}
.nm-selector-heading {
    display:flex;align-items:center;cursor:pointer;justify-content:space-between;background-color:#98989800;
    padding:5px 10px 5px 16px;
    border-radius:5px;
    width:170px;
    color:#fff;
    border:1px solid #ffffff29;
}
.nm-selector-heading svg {width:16px;}
.nm-selector-heading:hover {background-color:#98989812;}
.nm-selector-heading span {text-transform: uppercase;}
.nm-header-date-datas {display:flex;justify-content:center;gap:12px;background-color:#0000003b;border-radius:5px;padding:16px;margin-top:24px;color:#fff;text-align:center;font-size:16px;}

.vakitler-page-header-bottom {background-color:#1c3d1c;padding:24px 24px;}
.nm-header-bottom-wrapper {display:grid;grid-template-columns:repeat(6, 1fr);gap:16px;}
.nm-header-bottom-item {position:relative;background-color:#0000003b;padding:16px 16px;border-radius:5px;display:flex;flex-direction: column;justify-content: center;align-items: center;color:#fff;}
.nm-header-bottom-item strong {font-weight:500;}
.nm-header-bottom-item span {font-size:24px;font-weight:600;}
.nm-header-bottom-item.active {background-color:#34ac34;}
.nm-header-bottom-item.active::after {position:absolute;content:"";bottom:-24px;left:50%;width:70px;height:5px;
background-color:#34ac34;transform:translate(-50%, 0%);border-radius:5px;}
.nm-selector-popup {position:absolute;top:36px;max-height:200px;overflow:auto;width:170px;
    display:flex;flex-direction:column;
background-color:#fff;border-radius:5px;z-index: 9;

transition: .3s;
-ms-transform: scale(.8);
-moz-transform: scale(.8);
-o-transform: scale(.8);
-webkit-transform: scale(.8);
transform: scale(.8); opacity: 0;
visibility: hidden;
}
.nm-selector-popup.active {opacity: 1;visibility: visible;transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);}

.nm-selector-popup-item {padding:2px 12px;color:#333;text-transform: capitalize;}
.nm-selector-popup-item:hover {background-color: #f5f5f5;}
.nm-selector-popup::-webkit-scrollbar {width:5px;}
.nm-selector-popup::-webkit-scrollbar-track {background: #f1f1f1;}
.nm-selector-popup::-webkit-scrollbar-thumb {background: #888;border-radius:5px;}
.vakitler-page-content {padding:24px 0;}
.nv-content-wrapper {}
.nv-table-wrapper {}
.nv-table-header {padding:15px 16px;font-size:18px;color:#fff;background-color:var(--primary-color);}
.nv-table-wrapper table {width:100%;border-collapse:collapse;overflow-x:scroll;}
.nv-table-wrapper table tr:nth-child(odd) {background:#fcfcfc;}
.nv-table-wrapper table tr {border-bottom:1px solid #ededed;}
.nv-table-wrapper table th {background:#000;color:#fff;border:0;padding:15px;font-weight:normal;text-align:center;}
.nv-table-wrapper table th:first-child {text-align:left;}
.nv-table-wrapper table td {border:0;padding:15px;text-align:center;white-space:nowrap;color:#000;font-size:16px;}
.nv-table-wrapper table td:first-child {text-align:left;font-weight: 500;}

/* sticky-nav */
.sticky-nav {position:absolute;font-size:16px;top:59px;width:100%;left:0;right:0;background-color:#fff;z-index:99;
    padding:42px 0 50px 0;opacity:0;visibility:hidden;box-shadow:0px 10px 35px -6px rgba(0,0,0,0.28);}
    .sticky-nav.active {opacity:1;visibility: visible;}
.sticky-nav-wrapper {display:grid;grid-template-columns:repeat(5, 1fr);}
.sticky-nav-block {display:flex;flex-direction: column;gap:6px;}
.sticky-nav-block strong {color:#aaaaaa;}
.sticky-nav-block ul {margin:0;padding:0;display:flex;flex-direction: column;}
.sticky-nav-block ul li {}
.sticky-nav-block ul li a {color:#000;padding:6px 0;display:flex;}
.sticky-nav-block ul li a:hover {color:#777}

.sticky-nav-icon {display:flex;margin-top:12px;margin-left:16px;float:right;justify-content: center;align-items:center;padding:4px;border-radius:100%;border:1px solid #fff;cursor:pointer;}

/* points */
.points-page {padding:0 0 24px 0;}
.points-header-wrapper {margin-bottom:24px;}
.points-header-wrapper h1 {color:#000;}
.points-league-list {overflow:hidden;display:grid;grid-template-columns:repeat(6, 1fr);list-style-type: none;margin:0;padding:0;background-color:#eee;border-radius:5px;}
.points-league-list li {}
.points-league-list li a {padding:8px 24px;display:flex;align-items:center;justify-content:center;color:#000;font-weight:600;border-right:1px solid #dddddd;}
.points-league-list li.active a, .points-league-list li a:hover {background-color:var(--primary-color);color:#fff;}
.points-data table {line-height:20px;background-color:#fff;width:100%;}
.points-data table tr {background:none;border-bottom:1px solid #eee;}
.points-data table tr:nth-child(odd) {background:#fcfcfc;}
.points-data table tr:first-child th {border-bottom:1px solid #eee;}
.points-data table td, .points-data table th {padding: 10px;vertical-align: middle;text-align: center;border: 0;color:#000;}
.points-data table th {background:#fafafa;}
.points-data table td.order {padding:0;}
.points-data table td.order .inner {display:flex;align-items:center;padding:13px 0;justify-content:center;border-left:5px solid transparent;}
.points-data table.spor-toto-super-lig tr:nth-child(2) td.order .inner {border-color: #5ad586;}
.points-data table.spor-toto-super-lig tr:nth-child(3) td.order .inner {border-color: #4990e2;}
.points-data table.spor-toto-super-lig tr:nth-child(4) td.order .inner {border-color: #ff7d03;}
.points-data table.spor-toto-super-lig tr:nth-child(5) td.order .inner {border-color: #2afffc;}
.points-data table.spor-toto-super-lig tr:nth-last-child(-n+4) td.order .inner {border-color: #fe1212;}

.points-data table.ingiltere-premier-ligi tr:nth-child(2) td.order .inner {border-color: #5ad586;}
.points-data table.ingiltere-premier-ligi tr:nth-child(3) td.order .inner {border-color: #5ad586;}
.points-data table.ingiltere-premier-ligi tr:nth-child(4) td.order .inner {border-color: #5ad586;}
.points-data table.ingiltere-premier-ligi tr:nth-child(5) td.order .inner {border-color: #5ad586;}
.points-data table.ingiltere-premier-ligi tr:nth-child(6) td.order .inner {border-color: #4990e2;}
.points-data table.ingiltere-premier-ligi tr:nth-child(7) td.order .inner {border-color: #ff7d03;}
.points-data table.ingiltere-premier-ligi tr:nth-last-child(-n+3) td.order .inner {border-color: #fe1212;}

.points-data table.almanya-bundesliga tr:nth-child(2) td.order .inner {border-color: #5ad586;}
.points-data table.almanya-bundesliga tr:nth-child(3) td.order .inner {border-color: #5ad586;}
.points-data table.almanya-bundesliga tr:nth-child(4) td.order .inner {border-color: #5ad586;}
.points-data table.almanya-bundesliga tr:nth-child(5) td.order .inner {border-color: #5ad586;}
.points-data table.almanya-bundesliga tr:nth-child(6) td.order .inner {border-color: #4990e2;}
.points-data table.almanya-bundesliga tr:nth-child(7) td.order .inner {border-color: #ff7d03;}
.points-data table.almanya-bundesliga tr:nth-last-child(-n+2) td.order .inner {border-color: #fe1212;}
.points-data table.almanya-bundesliga tr:nth-last-child(3) td.order .inner {border-color: #2afffc;}

.points-data table.italya-serie-a tr:nth-child(2) td.order .inner {border-color: #5ad586;}
.points-data table.italya-serie-a tr:nth-child(3) td.order .inner {border-color: #5ad586;}
.points-data table.italya-serie-a tr:nth-child(4) td.order .inner {border-color: #5ad586;}
.points-data table.italya-serie-a tr:nth-child(5) td.order .inner {border-color: #5ad586;}
.points-data table.italya-serie-a tr:nth-child(6) td.order .inner {border-color: #4990e2;}
.points-data table.italya-serie-a tr:nth-child(7) td.order .inner {border-color: #ff7d03;}
.points-data table.italya-serie-a tr:nth-last-child(-n+3) td.order .inner {border-color: #fe1212;}

.points-data table.fransa-ligue-1 tr:nth-child(2) td.order .inner {border-color: #5ad586;}
.points-data table.fransa-ligue-1 tr:nth-child(3) td.order .inner {border-color: #5ad586;}
.points-data table.fransa-ligue-1 tr:nth-child(4) td.order .inner {border-color: #5ad586;}
.points-data table.fransa-ligue-1 tr:nth-child(5) td.order .inner {border-color: #4990e2;}
.points-data table.fransa-ligue-1 tr:nth-child(6) td.order .inner {border-color: #ff7d03;}
.points-data table.fransa-ligue-1 tr:nth-child(7) td.order .inner {border-color: #2afffc;}
.points-data table.fransa-ligue-1 tr:nth-last-child(-n+3) td.order .inner {border-color: #fe1212;}
.points-data table.fransa-ligue-1 tr:nth-last-child(4) td.order .inner {border-color: #07ff3b;}

.points-data table.ispanya-la-liga tr:nth-child(2) td.order .inner {border-color: #5ad586;}
.points-data table.ispanya-la-liga tr:nth-child(3) td.order .inner {border-color: #5ad586;}
.points-data table.ispanya-la-liga tr:nth-child(4) td.order .inner {border-color: #5ad586;}
.points-data table.ispanya-la-liga tr:nth-child(5) td.order .inner {border-color: #5ad586;}
.points-data table.ispanya-la-liga tr:nth-child(6) td.order .inner {border-color: #4990e2;}
.points-data table.ispanya-la-liga tr:nth-child(7) td.order .inner {border-color: #ff7d03;}
.points-data table.ispanya-la-liga tr:nth-last-child(-n+3) td.order .inner {border-color: #fe1212;}



.points-data table .team {text-align:left;font-weight:bold;}
.points-data table td.team img {margin-right: 10px;}
.points-data table td.points {font-weight: bold;}

/* nobetci-eczaneler */
.ne-page {padding:0 0 24px 0;}
.ne-header-wrapper {margin-bottom:24px;}
.ne-header-wrapper h1 {color:#000;}
.ne-content-wrapper {display:flex;justify-content:space-between;background-color:#fff;border-radius:5px;overflow:hidden;}
.ne-content-left {width:calc(100% - 324px);}
.ne-item-header-left {display:flex;gap:12px;}
.ne-item-header-left-icon {width:24px;height:24px;background-color:var(--primary-color);display:flex;align-items:center;justify-content:center;}
.ne-item-header-left-icon svg {color:#fff;}
.ne-item {display:flex;flex-direction:column;margin-bottom:16px;}
.ne-item-header {display:flex;justify-content:space-between;align-items:center;background-color:#f0f0f0;padding:12px 16px;}
.ne-item-header-left {}
.ne-item-title {color:#000;font-size:16px;}
.ne-item-district {color:#000;font-size:16px;}
.ne-item-data {display:flex;padding:16px 16px;gap:24px;border-right:1px solid #f5f5f5;border-bottom:1px solid #f5f5f5;border-left:1px solid #f5f5f5;align-items:center;justify-content:space-between;}
.ne-item-address {font-size:17px;color:#000;width:calc(100% - 200px);}
.ne-item-phone {display:flex;align-items:center;justify-content:center;gap:6px;background-color:var(--primary-color);color:#fff;text-align:center;padding:10px 14px;font-weight:700;font-size:16px;width:190px;}
.ne-item-phone:hover {color:#fff;}

.ne-content-sidebar {width:300px;background-color:#eee;padding:24px 24px;}
.ne-district-list {display:flex;flex-direction:column;}
.ne-district-list strong {color:#000;margin-bottom:12px;font-size:20px;display:flex;width: 100%;}
.ne-district-list ul {margin:0;padding:0;list-style-type:none;}
.ne-district-list ul li {border-top:1px dotted #ddd;}
.ne-district-list ul li a {font-weight:600;width:100%;padding:4px 0;display:flex;}
.ne-district-list ul li:hover a {color:#000;}

.ne-city-list {display:flex;flex-direction:column;margin-bottom:16px;}
.ne-city-list strong {color:#000;margin-bottom:12px;font-size:20px;display:flex;width: 100%;}
.ne-city-list-box {position:relative;}
.ne-city-list-current {display:flex;align-items:center;cursor:pointer;justify-content:space-between;
    background-color:#fff;padding:8px 12px 8px 16px;border-radius:5px;border:1px solid #d9d9d9;}
.ne-city-list-current span {color:#000;font-size:16px;font-weight:600;}
.ne-city-list-current svg {width:18px;height:18px;position:relative;top:1px;}
.ne-city-list-box ul {position:absolute;left:0;right:0;top:42px;width:100%;background-color:#fff;
    z-index:9;transition: .3s;
    -ms-transform: scale(.8);
    -moz-transform: scale(.8);
    -o-transform: scale(.8);
    -webkit-transform: scale(.8);border:1px solid #d9d9d9;
    transform: scale(.8); opacity: 0;max-height:210px;overflow:auto;list-style-type:none;margin:0;padding:0;}
.ne-city-list-box ul.active {opacity: 1;visibility: visible;transform: scale(1);-webkit-transform: scale(1);
    -moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);}
.ne-city-list-box ul li {width:100%;border-bottom:1px solid #e9e9e9;}
.ne-city-list-box ul li a {display:flex;padding:4px 12px;color:#000;width:100%;}
.ne-city-list-box ul li a:hover {background-color:#f5f5f5}

/* width */
.ne-city-list-box ul::-webkit-scrollbar {width:5px;}
  
/* Track */
.ne-city-list-box ul::-webkit-scrollbar-track {background: #f1f1f1;}
  
/* Handle */
.ne-city-list-box ul::-webkit-scrollbar-thumb {background: #888;}

/* contact */
.contact-content-wrapper {display:flex;justify-content:space-between;background-color:#fff;border-radius:5px;overflow:hidden;padding:24px 0;gap:30px;}
.contact-page-left {display:grid;gap:30px;grid-template-columns:1fr 1fr;}
.pl-content {font-size: 16px;}
.pl-content iframe {max-width:100%;max-height:220px;width:100%;}
.pl-form {}
.pl-form label {width:100%;}
.pl-form input {width:100%;outline: none;box-shadow: none;border: 2px solid #d6d6d6;height: 40px;background-color: #f5f5f5;padding:0 16px;}
.pl-form textarea {width:100%;outline: none;box-shadow: none;border: 2px solid #d6d6d6;height:140px;background-color: #f5f5f5;padding:12px 16px;}
.pl-form input[type="submit"] {background-color:var(--primary-color);color:#fff;border:none;cursor:pointer;font-family:inherit;font-weight:bold;text-transform: uppercase;}
.pl-form .wpcf7 form .wpcf7-response-output {margin:0 !important}

.page-right {width:300px;background-color:#eee;padding:24px 24px;}
.page-right>strong {color:#000;margin-bottom:12px;font-size:18px;display:flex;width:100%;}
.page-right ul {list-style-type: none;margin: 0;padding: 0;display: flex;flex-direction: column;}
.page-right ul li {border-top:1px dotted #ddd;}
.page-right ul li a {font-weight:600;width:100%;padding:4px 0;display:flex;}
.page-right ul li a:hover {color:#000;}

/* page-template */
.page-template .page-content {color:#000;}
.page-template .page-content h1, .page-template .page-content h2, .page-template .page-content h3, .page-template .page-content h4, .page-template .page-content h5, .page-template .page-content h6 {font-weight:bold;}
.page-content-wrapper {display:flex;justify-content:space-between;background-color:#fff;border-radius:5px;overflow:hidden;padding:24px 0;gap:30px;}
.page-left {display:flex;width:calc(100% - 300px)}
.page-content {width:100%;}

/**/
.home-middle-left .wide-headline-two-wrapper {width:calc(100% - 15px);}
.home-middle-left .wide-headline-two {margin-left:15px;}
.home-middle-left .posts-seven .post-items-wrapper {padding:0 15px;}
.home-top-wide .posts-seven .post-items-wrapper {grid-template-columns: repeat(4, 1fr);}

/**/
.wide-headline .post--item.left-post .post--img .thumb::after {position:absolute;content:"";width:100%;height:100%;box-shadow: inset 0 -223px 168px -86px rgb(0 0 0);bottom:0;left:0;right:0;z-index:9;transition:250ms;}
.wide-headline .post--item.right-post .post--img .thumb::after {position:absolute;content:"";width:100%;height:100%;box-shadow:inset 0 -185px 89px -67px rgb(0 0 0);bottom:0;left:0;right:0;z-index:9;transition:250ms;}
.posts-one .post--item.top-post .post--img .thumb::after {position:absolute;content:"";width:100%;height:100%;box-shadow:inset 0 -201px 90px -118px rgb(0 0 0 / 71%);bottom:0;left:0;right:0;z-index:9;transition:250ms;}
.posts-two .post--item.top-post .post--img .thumb::after {position:absolute;content:"";width:100%;height:100%;box-shadow: inset 0 -201px 90px -118px rgb(0 0 0 / 71%);bottom:0;left:0;right:0;z-index:9;transition:250ms;}
.post--related .post--item .post--img .thumb::after {position:absolute;content:"";width:100%;height:100%;box-shadow: inset 0 -201px 90px -118px rgb(0 0 0 / 71%);bottom:0;left:0;right:0;z-index:9;transition:250ms;}
.posts-five .post--item .post--img .thumb::after {position:absolute;content:"";width:100%;height:100%;box-shadow: inset 0 -201px 90px -118px rgb(0 0 0 / 71%);bottom:0;left:0;right:0;z-index:9;transition:250ms;}

.posts-six .post--item.top-post .post--img .thumb::after {position:absolute;content:"";width:100%;height:100%;box-shadow: inset 0 -201px 90px -118px rgb(0 0 0 / 71%);bottom:0;left:0;right:0;z-index:9;transition:250ms;}

.posts-six .post--item.normal-post .post--img .thumb::after {position:absolute;content:"";width:100%;height:100%;box-shadow: inset 0 -201px 90px -118px rgb(0 0 0 / 71%);bottom:0;left:0;right:0;z-index:9;transition:250ms;}
.posts-four .post--item.top-post .post--img .thumb::after {position:absolute;content:"";width:100%;height:100%;box-shadow: inset 0 -201px 90px -118px rgb(0 0 0 / 71%);bottom:0;left:0;right:0;z-index:9;transition:250ms;}

/**/
.news--ticker .title {display:flex;gap:6px;}
.mobile-logo {display:none;}
.ad-wide {padding-left:0;padding-right:0;}
.login-register {padding-bottom:30px;}
.login-register h3 {color:#000;}
.login-register-text {color:#999;}
.login-register input {border-color:#ccc;border-radius:4px;}
.login-register button {width:100%;border-radius:4px;}
.single-post-top-text {padding:0 15px;margin-top:20px;}
.single-post-title {}
.single-post-title h2 {font-size:38px;color:#000;font-weight:700;}
.single-post-summary {font-size:18px;color:#000;margin-top:12px;}
.breadcrumb li a svg {width:16px;    position: relative;
    top: 7px;margin-right:6px;}

.home-middle-left .wide-headline {padding-right:15px;padding-left:15px;}
.home-middle-left .posts-four {padding-right:15px;padding-left:15px;}
.main--sidebar .posts-one.col-md-6 {width:100%;margin-bottom:20px;padding-bottom:0;float:none;padding-right:0;padding-left:0;}
.main--sidebar .posts-two.col-md-6 {width:100%;margin-bottom:20px;padding-bottom:0;float:none;padding-right:0;padding-left:0;}
.cat-page-header {display:flex;flex-direction:column;}
.page-header-top {display:flex;justify-content: space-between;align-items:center;}
.page-header-top .page-title {}
.page-header-top .page-title h1 {font-weight:700;color:#000;font-size:32px;}
.page-header-bottom span {color:#000;font-size:17px;}
.main--breadcrumb {    background-color: #f1f1f1;
    padding: 8px 0 24px 0;
    margin-top: 0;}
.single .main--breadcrumb {padding:10px 0px 16px 0}
.post-other-details {display:flex;align-items:center;padding:6px 0 6px 0;border-bottom:1px solid #dcdcdc;color:#000;gap:16px;}
.post-other-details .post--cats .nav {margin-top:0;color:#ccc;}
.font-operations {display:flex;margin-left:auto;}
.font-operations {display:flex;gap:8px;}
.font-operations div {display:flex;border:1px solid #b4b4b4;align-items:center;font-size:18px;height:32px;justify-content: center; color:#524f4f;font-weight:600;border-radius:4px;width:38px;cursor:pointer;text-align:center;}
.font-operations div:hover {color:#fff;background-color:var(--primary-color);border-color:var(--primary-color);}
.single .main--content .social--widget .nav li a {display:flex;align-items:center;gap:5px;padding:0 12px !important;height:36px;}
.single .main--content .social--widget .nav li a i {color:#fff !important;min-width:auto !important;padding: 0 0 !important;border:none !important;display:inline-flex !important;}
.single .main--content .social--widget .nav li.facebook a {background-color:#3b5998;}
.single .main--content .social--widget .nav li.twitter a {background-color:#000;}
.single .main--content .social--widget .nav li.whatsapp a {background-color:#48a91f;}
.single .main--content .social--widget .nav li a span {font-size:16px;color:#fff;}
.single .main--content .social--widget .nav li a:hover i {background-color:transparent !important;border-color:transparent !important;}
.single .main--content .post--social .title i {font-size:18px;color:var(--primary-color)}
.single .main--content .post--nav .post--img .thumb {max-width:100%;height:158px;width:100%;}
.single .main--content .post--nav .post--img .thumb:after {font-size: 30px;margin-left:-15px}
.single .main--content .post--nav .post--items-title {display:flex;justify-content: space-between;padding-right:0;}
.megamenu--posts .img .thumb {height:160px;}
.megamenu--posts .img .thumb img {height:100%;object-fit:cover;width:100%;}
.header--menu-links > .megamenu > .dropdown-menu {box-shadow:0px 10px 35px -6px rgba(0,0,0,0.40)}
.dropdown-menu-all-button {display:flex;padding-bottom:16px;height:34px;align-items:center;justify-content:center;background-color:var(--primary-color);width:52px;margin-left:7px;margin-bottom:12px;position:relative;z-index:9;}
.dropdown-menu-all-button:hover {opacity:0.9;}
.dropdown-menu-all-button>a {display:flex;color:#fff !important;font-size:15px !important;position:relative;top:7px;}

/* authors-widget */
.authors-widget {position:relative;}
.home-middle-left .authors-widget-wrapper {padding-left:15px;padding-right:15px;}
.aw-item {display:flex !important;align-items:center;padding:18px 16px 18px 16px;background-color:#eee;gap:12px;box-shadow:0px 1px 2px 0px rgba(17,21,25,0.27);}
.aw-item-left {display:flex;flex-direction:column;width:calc(100% - 88px);}
.aw-item-name {display:flex;font-size:16px;color:#222;line-height:24px;font-weight:700;}
.aw-item-post-title {color:#666666;font-size:14px;line-height:1.5;display:-webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;}
.aw-item-thumb {width:88px;height:88px;border-radius:100%;display:flex;overflow:hidden;    border: 3px solid var(--primary-color);}
.aw-item-thumb img {width:100%;height:100%;object-fit:cover;}
.aw-item-name:hover, .aw-item-post-title:hover {color:var(--primary-color);}

.authors-swiper-button-next {display:flex;align-items:center;justify-content:center;background-color:#000000a3;z-index:9;width:30px;height:30px;}
.authors-swiper-button-next.swiper-button-disabled {opacity:0.5;}
.authors-swiper-button-next>svg {color:white;width:20px;}
.authors-swiper-button-prev {display:flex;align-items:center;justify-content:center;background-color:#000000a3;z-index:9;width:30px;height:30px;}
.authors-swiper-button-prev.swiper-button-disabled {opacity:0.5;}
.authors-swiper-button-prev>svg {color:white;width:20px;}

.last-minute-swiper-buttons {display:flex;float:left;}
.last-minute-swiper-button-next {display:flex;align-items:center;justify-content:center;background-color:#000000a3;z-index:9;width:32px;height:50px;}
.last-minute-swiper-button-next.swiper-button-disabled {opacity:0.5;}
.last-minute-swiper-button-next>svg {color:white;width:20px;}
.last-minute-swiper-button-prev {display:flex;align-items:center;justify-content:center;background-color:#000000a3;z-index:9;width:32px;height:50px;}
.last-minute-swiper-button-prev.swiper-button-disabled {opacity:0.5;}
.last-minute-swiper-button-prev>svg {color:white;width:20px;}


.authors-widget-wrapper .post--items-title {display:flex;padding-right:0;justify-content:space-between;}
.authors-widget-wrapper .post--items-title .nav {margin-top:0;position:initial !important;margin-left:auto;}
.authors-swiper-buttons {display:flex;margin-left:auto;}
.authors-widget-header-right {display:flex;align-items:center;gap:12px;flex-direction: row;padding-left:16px;}
.authors-list .news-item .post--img {display:flex;height:80px;}
.authors-list .news-item .post--img .thumb {width:80px;}
.authors-list .news-item .nav>li>a {padding:0 0;}
.authors-list .news-item .nav>li.author-name>a {font-weight:700;color:#000;font-size:16px;}
.sap-list {display:flex;flex-direction: column;gap:12px;}
.sap-item {display:flex;align-items:center;gap:12px;border-bottom:1px solid #e5e5e5;padding-bottom:12px;}
.sap-item:last-child {border-bottom:none;padding-bottom:0px;}
.sap-item-number {width:32px;height:32px;background-color:var(--primary-color);color:#fff;display:flex;align-items:center;justify-content: center;}
.sap-item-title {font-size:16px;font-weight:500;width:calc(100% - 32px);overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;}
.sap-item:hover .sap-item-title {color:#000;}

.header-top-currencies {width:100%;height:40px;background-color:#333}
.header-top-currencies-wrapper {display:flex;align-items:center;height:100%;}
.htc-item {display:flex;flex-direction:column;padding:0 12px;justify-content:center;border-right:1px solid #0000003d}
.htc-item-parity {font-size:12px;color:#a2a2a2;height:14px;text-transform:uppercase;}
.htc-item-name {font-size:10px;height:12px;color:#fff;}

.wide-headline-two .wht-item .wht-item--title {font-size:32px !important;}
.pbottom--20 .wht-item--title{
	margin-left:20px;margin-top: 25px;
}
/* responsive */

@media only screen and (max-width:1140px){
    .wp-header-wrapper {grid-template-columns:repeat(2, 1fr)}
    .wp-content-datas {grid-template-columns: repeat(2, 1fr);}
    .fp-content-wrapper {flex-direction: column;}
    .fp-content {width:100%;}
    .fp-sidebar {width:100%;}
    .group {padding:16px 0 16px 0}
    .wide-headline-two {height:auto;}
    .header-top-currencies-wrapper {overflow:auto;}
}

@media only screen and (max-width:1080px){

    
}

@media only screen and (max-width:1060px){

}

@media only screen and (max-width:1024px){
    .ne-content-left {width:calc(100% - 224px);}
    .ne-content-sidebar {width:200px;}
   
}

@media only screen and (max-width:900px){
    .home-top-wide .posts-seven .post-items-wrapper {grid-template-columns: repeat(3, 1fr);}
    .home-middle-left .posts-seven .post-items-wrapper {grid-template-columns: repeat(2, 1fr);}
    .wide-headline-two .wht-item .wht-item--title {font-size:24px;}
    .home-top-wide .wide-headline-two-pagination {position:initial !important;flex-direction:row !important;width:auto !important;height:auto !important}
    .wide-headline-two .wht-item {height:256px;}
    .wide-headline-two.navigation-below  {height:300px;}
    .wide-headline-two.navigation-below  .wht-item {height:100%;}
}

@media only screen and (max-width:769px){
    .match .team {font-size:14px;}
    .match .time {display:none;}
    .ap-header-wrapper {grid-template-columns:repeat(6, 1fr);}
    .ap-content-wrapper.horoscope-detail {flex-direction: column;}
    .ap-content-wrapper.horoscope-detail .ap-left {width:100%;padding-right:0;margin-bottom:32px;}
    .ap-content-wrapper.horoscope-detail .ap-sidebar {width:100%;}
    .nm-header-wrapper {grid-template-columns:repeat(1, 1fr);}
    .nm-header-bottom-wrapper {grid-template-columns:repeat(3, 1fr);}
    .points-league-list {grid-template-columns:repeat(3, 1fr);}
    .ne-content-wrapper {flex-direction:column-reverse;}
    .ne-content-left {width:100%;}
    .ne-content-sidebar {width:100%;margin-bottom:24px;}
    .ne-district-list ul {display:grid;grid-template-columns:repeat(5, 1fr);}
    .contact-content-wrapper {display:flex;flex-direction: column;}
    .page-content-wrapper {display:flex;flex-direction: column;}
    .page-left {width:100%}
    .contact-page-left {display:flex;flex-direction: column;}
    .page-right {width:100%;}
    .sticky-nav-wrapper {grid-template-columns:repeat(3, 1fr);gap:24px;}
    .sticky-nav {padding:16px 0 24px 0;overflow:auto;}
    .news--ticker .title {float:left !important;height:50px;}
    .news--ticker .title h2 {display:none;}
    .news--ticker .title span{display:none;}
    .mobile-logo {display:flex;max-width:200px;top: 5px;position:absolute;left:50%;transform:translate(-50%, 0%);}
    .mobile-logo a img {max-width:200px;}
    .header--mainbar {display:none;}
    .header-top-right {display:flex;align-items:center;justify-content:center;padding-top:6px;}
    .post-items-wrapper {grid-template-columns:repeat(2, 1fr);}
    .left-post.post--item {height:290px;}
    
    .aw-item-left {width:calc(100% - 70px);}
    .aw-item {min-height:94px;}
    .post-items-wrapper {
        grid-template-columns: repeat(1, 1fr);
        display: grid;
        gap: 20px;
    }
}

@media only screen and (max-width:600px){
    .points-data table tr:first-child th.yg, .points-data table td.yg {display:none;}
    .points-data table tr:first-child th.ag, .points-data table td.ag {display:none;}
    .points-data table tr:first-child th.a, .points-data table td.a {display:none;}
    .ne-district-list ul {display:grid;grid-template-columns:repeat(4, 1fr);}
}

@media only screen and (max-width:500px){
    .wp-header-wrapper {grid-template-columns:repeat(1, 1fr)}
    .wp-content-datas {grid-template-columns: repeat(1, 1fr);}
    .crypto-table .supply {display: none;}
    .ne-district-list ul {display:grid;grid-template-columns:repeat(3, 1fr);}
    .authors-list .news-item .post--img .thumb {width:55px;}
    .authors-list .news-item .post--img {height:55px;}
    .authors-list .news-item .nav>li.author-name>a {font-size:14px;}
    .authors-widget-header-right {padding-top:3px;}
}


@media only screen and (max-width:480px){
    .points-data table tr:first-child th.g, .points-data table td.g {display:none;}
    .points-data table tr:first-child th.b, .points-data table td.b {display:none;}
    .points-data table tr:first-child th.m, .points-data table td.m {display:none;}
    .home-top-wide .posts-seven .post-items-wrapper {grid-template-columns: repeat(2, 1fr);}
    .home-middle-left .posts-seven .post-items-wrapper {grid-template-columns: repeat(2, 1fr);}
    .wide-headline-two .wht-item .wht-item--title {font-size:18px;}
    .left-post.post--item {height:300px;}
    .sticky-nav-wrapper {grid-template-columns:repeat(2, 1fr);}
    .news-updates--list .nav li .h3 a {font-size:15px;}
    .login-register-text {display:none !important;}
    .news-updates--list .nav li .h3 {height:50px;display:flex;align-items:center;}
    .news-updates--list .nav li .h3 a {    display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;}
        .wide-headline-two .wht-item .wht-item--right {width:100% !important;}
    .wide-headline-two .wht-item .wht-item--details {width:100% !important;}
    .wide-headline-two .wht-item .wht-item--title {font-size: 24px !important;margin-top: 75px;margin-left: 15px;}

}

@media only screen and (max-width:440px){

}

@media only screen and (max-width:390px){

}










/* end */

.post--items hr.divider {margin:15px 0;}



.post--items hr.divider--25 {
    margin: 25px 0;
}

.post--items .preloader {
    display: none;
}

/* 8.6.1. POST IMAGE */
.post--img {
    position: relative;
}

.post--single .post--info + .post--img {
    margin-top: 21px;
}

.post--img .thumb {
    position: relative;
    z-index: 0;
}

.post--item.post--layout-3 .post--img .thumb,
.post--item.post--layout-4 .post--img .thumb {
    float: left;
    max-width: 100px;
    margin-right: 20px;
}

.post--item.post--layout-4 .post--img .thumb {
    max-width: 150px;
}

.post--img a {
    display: block;
}

.post--item.post--layout-1.post--title-largest .post--img span.thumb {
    display: block;
}

.post--item.post--type-video:hover .thumb:after {
    background-color: #c21418;
}

.post--item.post--type-audio:hover .thumb:after {
    border-color: #c21418;
}

.post--item.post--type-audio.post--layout-3 .thumb:after,
.post--item.post--type-audio.post--layout-4 .thumb:after {
    margin-left: -10.5px;
    padding: 4px 5px 5px 6px;
    border-radius: 50%;
}

.post--img .thumb img {
    width: 100%;
}

.post--img a.cat {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0 10px;
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
    z-index: 1;
}

.post--img a.cat:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    -webkit-transition: background-color .25s ease-in-out;
            transition: background-color .25s ease-in-out;
    z-index: -1;
}

.post--img a.cat:hover,
.post--img a.cat:focus {
    color: #fff;
}

.post--img a.cat:hover:before {
    background-color: var(--primary-color);
}

.post--img .icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    color: #fff;
    font-size: 16px;
    line-height: 36px;
    text-align: center;
    z-index: 1;
}

.post--img .icon:hover,
.post--img .icon:focus {
    color: #fff;
}

.post--img .icon:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    -webkit-transition: background-color .25s ease-in-out;
            transition: background-color .25s ease-in-out;
    z-index: -1;
}

.post--img .icon:hover:before {
    background-color: #000;
}

/* 8.6.2. POST MAP */
.post--map {
    color: #fff;
}

.post--item.post--layout-1 .post--map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.post--map .btn-link {
    display: inline-block;
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 10px;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 22px;
    z-index: 1;
}

.post--map .btn-link i {
    margin-right: 15px;
}

.post--map .map--wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition-property: opacity, visibility, -webkit-transform;
            transition-property: opacity, visibility, -webkit-transform;
            transition-property: opacity, visibility, transform;
            transition-property: opacity, visibility, transform, -webkit-transform;
    -webkit-transition-duration: .25s, .25s, .55s;
            transition-duration: .25s, .25s, .55s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
    z-index: 2;
}

.post--map .btn-link.active + .map--wrapper {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    -webkit-transform: scale(1.0);
            transform: scale(1.0);
}

.post--map .map--wrapper > div {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    background-color: #f8f8f8;
}

/* 8.6.3. POST CATS, TAGS */
.post--cats .nav,
.post--tags .nav {
    margin: 18px -5px 11px;
    color: #999;
    font-size: 0;
    line-height: 0;
}

.post--cats .nav {
    margin-top: -12px;
}

.post--img + .post--cats .nav {
    margin-top: 18px;
}

.post--tags .nav {
    margin-top: 8px;
}

.post--cats .nav li,
.post--tags .nav li {
    display: inline-block;
    margin: 10px 5px 0;
    vertical-align: middle;
}

.post--cats .nav li span,
.post--tags .nav li span {
    color: #444;
    font-size: 16px;
    line-height: 26px;
}

.post--cats .nav li a,
.post--tags .nav li a {
    padding: 0 9px;
    border: 1px solid #444;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight:600;
    color:#444;
}

.post--cats .nav li a:hover,
.post--tags .nav li a:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* 8.6.4. POST INFO */
.post--item.post--layout-1 .post--info {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    color: #fff;
    z-index: 1;
}

.post--item.post--layout-1 .post--info-vc {
    top: 15px;
}

.post--item.post--layout-1 .post--map + .post--info {
    bottom: 41px;
}

.post--item.post--layout-2 .post--info {
    margin-top: 7px;
}

.post--info .meta {
    margin: 0 -7.5px;
    color: #999;
    font-size: 0;
    line-height: 0;
}

.post--item.post--layout-1 .post--info .meta {
    color: inherit;
}

.post--item.post--layout-3 .post--info,
.post--item.post--layout-4 .post--info {
    overflow: hidden;
}

.post--info .meta > li {
    display: inline-block;
    margin: 0 7.5px;
}

.post--item.post--layout-3 .post--info .meta,
.post--item.post--layout-4 .post--info .meta,
.post--item .row .post--info .meta {
    margin-top: -7px;
}

.list--widget-2 .post--item.post--layout-3 .post--info .meta,
.list--widget-2 .post--item.post--layout-4 .post--info .meta {
    margin-top: 0;
}

.post--info .meta > li > a,
.post--info .meta > li > span {
    padding: 0;
    font-size: 14px;
    line-height: 24px;
}

.post--items.post--items-2 .post--item.post--layout-2 .post--info .title {
    margin-bottom: -4px;
}

.post--single .post--info .title {
    margin-top: 4px;
}

.post--info .title .h4 {
    margin: 0;
    color: #222;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
}

.post--item.post--layout-1 .post--info .title .h4 {
    margin-bottom: -3px;
    color: inherit;
    font-size: 14px;
    line-height: 20px;
}

.post--items.post--items-1 .post--item .post--info .title .h4 {
    font-weight: 600;
}

.post--item.post--title-large .post--info .title .h4 {
    font-size: 16px;
    line-height: 26px;
}

.post--item.post--title-larger .post--info .title .h4 {
    font-size: 18px;
    line-height: 26px;
}

.post--item.post--title-largest .post--info .title .h4 {
    font-size: 36px;
    line-height: 46px;
}

.post--item.post--layout-2 .post--info .title .h4 {
    margin-top: 1px;
    font-weight: 700;
}

.post--single .post--info .title .h4 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
}

.post--item .post--info .title .h4 a {
    display: inline;
}

/* 8.6.5. POST CONTENT */
.post--content:before,
.post--content:after,
.comment--content:before,
.comment--content:after {
    content: " ";
    display: table;
}

.post--content:after,
.comment--content:after {
    clear: both;
}

.post--item .post--content {
    margin-top: 8px;
}

.post--single .post--content {
    margin-top: 14px;
}

.post--single .post--img + .post--content {
    margin-top: 23px;
}

.post--content h1, .comment--content h1,
.post--content h2, .comment--content h2,
.post--content h3, .comment--content h3,
.post--content h4, .comment--content h4,
.post--content h5, .comment--content h5,
.post--content h6, .comment--content h6 {
    color: #222;
    font-weight: 600;
}

.post--single .post--content p,
.post--single .post--content ul,
.comment--content p,
.comment--content ul {
    margin-bottom: 10px;
    color: #000;
    font-size: 17px;
    line-height:1.8;
}

.post--content blockquote,
.comment--content blockquote {
    position: relative;
    margin-left: 30px;
    margin-right: 30px;
    padding-left: 34px;
    padding-right: 34px;
    color: #999;
    font-style: italic;
    border-left-width: 0;
}

.post--content blockquote:before,
.comment--content blockquote:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background-color: #f2f3f5;
}

.post--content blockquote footer,
.comment--content blockquote footer {
    position: relative;
    padding-bottom: 6px;
    color: #222;
    font-style: normal;
    font-size: 16px;
    line-height: 26px;
}

.post--content blockquote footer:before,
.comment--content blockquote footer:before {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background-color: #f2f3f5;
}

.post--content .list {
    padding-left: 0;
    font-size: 16px;
    line-height: 26px;
    list-style: none;
}

.post--content .list li:before {
    content: "\f105";
    margin-right: 8px;
    font-family: "FontAwesome";
}

.post--content .list li + li {
    margin-top: 5px;
}

.post--content .img-caption {
    text-align: right;
}

/* 8.6.6. POST ACTION */
.post--item .post--action {
    margin-top: 5px;
    margin-bottom: -7px;
    color: #222;
}

/* 8.6.7. POST SOCIAL */
.post--social {
    margin-top: 10px;
    font-size: 0;
    line-height: 0;
}

.post--tags + .post--social {
    margin-top: 18px;
}

.post--social .title {
    display: inline-block;
    min-width: 17px;
    margin-top: 10px;
    margin-right: 5px;
    color: #777;
    font-size: 16px;
    line-height: 26px;
    vertical-align: middle;
}

.post--social .social--widget.style--4 {
    display: inline-block;
    vertical-align: middle;
}

.post--social .social--widget.style--4 .nav {
    padding: 0;
    background-color: transparent;
}

.post--social .social--widget.style--4 .nav > li {
    margin: 5px 5px 0;
}

/* 8.6.8. POST AUTHOR INFO */
.post--author-info {
    position: relative;
    min-height: 200px;
    margin: 0 0 30px 0;
    padding: 27px 30px 24px 180px;
    border: 1px solid #eee;
}

.post--author-info .img {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    padding: 30px;
    color: #222;
    background-color: #f2f3f5;
}

.post--author-info .img img {
    display: block;
    max-width: 90px;
    margin: 0 auto;
}

.post--author-info .img .name {
    margin-top: 7px;
}

.post--author-info .info {
    overflow: hidden;
}

.post--author-info .info .h4 {
    margin: 0;
    color: #222;
    font-weight: 600;
}

.post--author-info .info .content {
    margin-top: 20px;
}

.post--author-info .info .social {
    margin: 9px -8px 0;
    color: #999;
}

.post--author-info .info .social > li {
    float: left;
}

.post--author-info .info .social > li > a {
    padding: 8px 8px 0;
}

/* 8.6.9. POST NAV */
.post--nav {
    position: relative;
    z-index: 0;
}

.post--nav:before {
    content: " ";
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    bottom: 34px;
    width: 2px;
    margin: 0 auto;
    background-color: #eee;
    z-index: -1;
}

.post--nav > .nav > li + li {
    text-align: left;
}

.post--nav .post--img .thumb {
    display: inline-block;
    max-width: 80px;
    margin-bottom: 8px;
}

.post--nav .post--img .thumb:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .25s ease-in-out;
            transition: opacity .25s ease-in-out;
    z-index: 1;
}

.post--nav .post--img .thumb:hover:before {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.post--nav .post--img .thumb:after {
    content: "\f177";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -8px;
    color: #fff;
    font-family: "FontAwesome";
    font-size: 16px;
    line-height: 26px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .25s ease-in-out;
            transition: opacity .25s ease-in-out;
    z-index: 1;
}

.post--nav .post--img .thumb:hover:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.post--nav > .nav > li + li .post--img .thumb:after {
    content: "\f178";
}

/* 8.7. PRODUCT ITEMS */
.product--items {
    position: relative;
    z-index: 0;
}

.product--items .preloader {
    display: none;
}

.product--item {
    padding: 0 0 9px;
    -webkit-transition: box-shadow .25s ease-in-out, padding .25s ease-in-out;
            transition: box-shadow .25s ease-in-out, padding .25s ease-in-out;
}

.product--item:hover {
    padding-left: 15px;
    padding-right: 15px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.product--item .img {
    position: relative;
    margin: 0 0 12px;
    -webkit-transition: margin .25s ease-in-out;
            transition: margin .25s ease-in-out;
    z-index: 0;
}

.product--item:hover .img {
    margin-left: -15px;
    margin-right: -15px;
}

.product--item .img:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255,255,255);
    background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .25s ease-in-out;
            transition: opacity .25s ease-in-out;
    z-index: 1;
}

.product--item .img:hover:before {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.product--item .img .actions {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .25s ease-in-out;
            transition: opacity .25s ease-in-out;
    z-index: 1;
}

.product--item .img:hover .actions {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.product--item .img img {
    width: 100%;
}

.product--item .img .actions .btn {
    margin: 7.5px;
    padding-left: 10px;
    padding-right: 10px;
}

.product--item .img .actions .btn .fa {
    margin-right: 8px;
}

.product--item .img .actions .nav {
    font-size: 0;
    line-height: 0;
}

.product--item .img .actions .nav > li {
    display: inline-block;
    margin: 7.5px;
}

.product--item .img .actions .nav > li > a {
    min-width: 30px;
    padding: 0;
    color: #fff;
    background-color: var(--primary-color);
    font-size: 14px;
    line-height: 30px;
}

.product--item .img .actions .nav > li > a:hover {
    background-color: #000;
}

.product--item .title .h5 {
    margin: 0;
    color: #222;
    font-weight: 700;
}

.product--item .price {
    margin-top: 5px;
}

.product--item .price .del {
    margin-right: 15px;
    color: #999;
}

.product--item .rating {
    color: #999;
    -webkit-transition: color .25s;
            transition: color .25s;
}

.product--item:hover .rating {
    color: var(--primary-color);
}

.product--item .rating .nav {
    margin: 4px -2px 0;
    font-size: 0;
    line-height: 0;
}

.product--item .rating .nav li {
    display: inline-block;
    margin: 0 2px;
}

.product--item .rating .nav li i {
    font-size: 14px;
    line-height: 24px;
}

.product--img-gallery .nav {
    margin-top: 15px;
}

.product--img-gallery .nav > li {
    margin-top: 15px;
}

.product--img-gallery .nav > li > a {
    padding: 0;
}

.product--img-gallery .nav > li > a:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .25s ease-in-out;
            transition: opacity .25s ease-in-out;
    z-index: 1;
}

.product--img-gallery .nav > li.active > a:before {
    opacity: 0.35;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=35)";
}

.product--summery .title .h4 {
    margin: -3px 0 0;
    color: #222;
    font-weight: 600;
}

.product--summery .rating {
    margin-top: 21px;
    color: #999;
}

.product--summery .rating {
    font-size: 0;
    line-height: 0;
}

.product--summery .rating .nav {
    display: inline-block;
    margin-right: 20px;
    color: var(--primary-color);
}

.product--summery .rating .nav > li {
    display: inline-block;
}

.product--summery .rating .nav > li + li {
    margin-left: 3px;
}

.product--summery .rating .nav > li > i {
    font-size: 14px;
    line-height: 24px;
}

.product--summery .rating > a {
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
}

.product--summery .price {
    margin-top: 15px;
}

.product--summery .price span {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.product--summery .price span.del {
    margin-right: 10px;
    color: #999;
}

.product--summery .note {
    margin-top: 14px;
    margin-bottom: 0;
    color: #999;
}

.product--summery .note strong {
    margin-right: 4px;
    color: #222;
}

.product--summery .note + .note {
    margin-top: 16px;
}

.product--summery .description {
    margin-top: 16px;
}

.product--summery .cart {
    margin-top: 13px;
    font-size: 0;
    line-height: 0;
}

.product--summery .cart .quantity {
    margin-top: 10px;
    margin-right: 10px;
}

.product--summery .cart .btn {
    margin-top: 10px;
    margin-right: 10px;
}

.product--summery .meta {
    margin-top: 21px;
    color: #999;
    font-size: 0;
    line-height: 0;
}

.product--summery .meta > li {
    display: inline-block;
    margin-top: 5px;
    font-size: 14px;
    line-height: 18px;
}

.product--summery .meta > li > span {
    color: #222;
    font-weight: 600;
}

.product--summery .meta > li > a {
    display: inline-block;
    padding: 0;
}

.product--summery .meta.tag > li > a {
    border-bottom: 1px solid #bbb;
}

.product--summery .meta.tag > li > a:hover {
    border-color: inherit;
}

.product--summery .meta > li + li {
    margin-left: 5px;
}

.product--summery .meta.social > li + li {
    margin-left: 15px;
    padding-right: 15px;
    border-right: 1px solid #ccc;
}

.product--summery .meta.social > li:last-child {
    border-right-width: 0;
}

.product--summery .meta > li:last-child > a:after,
.product--summery .meta.tag > li > a:after,
.product--summery .meta.social > li > a:after {
    display: none;
}

.product--single .tab-nav {
    display: inline-block;
    color: #999;
    font-size: 0;
    line-height: 0;
    font-weight: 600;
}

.product--single .tab-nav > li {
    display: inline-block;
}

.product--single .tab-nav > li > a {
    padding: 6px 30px;
    border-style: solid;
    border-width: 1px 0 1px 1px;
    border-color: var(--primary-color);
    font-size: 18px;
    line-height: 28px;
}

.product--single ul.tab-nav > li > a:hover,
.product--single ul.tab-nav > li.active > a {
    color: #fff;
    background-color: var(--primary-color);
}

.product--single .tab-nav > li + li > a {
    border-left-width: 0;
}

.product--single .tab-nav > li:last-child > a {
    border-right-width: 1px;
}

.product--details .content p + table {
    margin-top: 20px;
}

.product--details .content table tr td {
    padding: 13px 20px;
    border: 1px solid #eee;
}

/* 8.8. CONTACT CATEGORIES */
.contact--cats .nav {
    margin: 0;
}

.contact--cats .nav > li {
    padding: 18px 18px 14px 18px;
    border-style: solid;
    border-width: 1px 1px 0 0;
    border-color: #eee;
}

.contact--cats .nav > li:nth-child(1),
.contact--cats .nav > li:nth-child(2),
.contact--cats .nav > li:nth-child(3) {
    margin-top: 0;
    padding-top: 0;
    border-top-width: 0;
}

.contact--cats .nav > li:nth-child(3n) {
    padding-right: 0;
    border-right-width: 0;
}

.contact--cats .nav > li:first-child,
.contact--cats .nav > li:nth-child(3n) + li {
    padding-left: 0;
}

.contact--cats ul.nav > li > a {
    padding: 0;
    color: inherit;
}

.contact--cats .icon {
    margin-bottom: 22px;
}

.contact--cats .title .h5 {
    margin: 0;
    color: #222;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    -webkit-transition: color .25s;
            transition: color .25s;
}

.contact--cats .nav > li > a:hover .title .h5  {
    color: var(--primary-color);
}

.contact--cats .content {
    margin-top: 16px;
}

/* 8.9. CONTRIBUTOR ITEMS */
.contributor--item {
    padding: 30px 20px;
    border: 1px solid #eee;
    text-align: center;
}

.contributor--item .img {
    max-width: 80px;
    margin: 0 auto 17px;
}

.contributor--item .name .h4 {
    margin: 0;
    color: #222;
    font-weight: 600;
    -webkit-transition: color .25s;
    transition: color .25s;
}

.contributor--item .desc {
    margin-top: 10px;
}

.contributor--item .social {
    margin: -1px -8px 13px;
    color: #999;
    font-size: 0;
    line-height: 0;
}

.contributor--item .social > li {
    display: inline-block;
}

.contributor--item .social > li > a {
    padding: 8px 8px 0;
    font-size: 14px;
    line-height: 24px;
}

.contributor--item .action {
    margin-top: 11px;
}

.contributor--item.style--2 {
    padding-bottom: 20px;
    -webkit-transition: box-shadow .25s ease-in-out;
    transition: box-shadow .25s ease-in-out;
}

.contributor--item.style--2:hover {
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.contributor--item.style--2 .img {
    position: relative;
    max-width: none;
    margin: -31px -21px 17px;
    overflow: hidden;
    z-index: 0;
}

.contributor--item.style--2 .img:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .25s ease-in-out;
    transition: opacity .25s ease-in-out;
    z-index: 0;
}

.contributor--item.style--2:hover .img:before {
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
}

.contributor--item.style--2 .social {
    position: absolute;
    top: 50%;
    left: -60px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    padding: 20px 0 16px;
    list-style: none;
    color: #fff;
    font-size: 0;
    line-height: 0
    ;text-align: center;
    -webkit-transition-property: left, right;
            transition-property: left, right;
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
    z-index: 1;
}

.contributor--item.style--2:hover .social {
    left: 0;
}

.contributor--item.style--2 .social:before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    z-index: 0;
}

.contributor--item.style--2 .social > li {
    display: block;
}

.contributor--item.style--2 .social > li > a {
    display: block;
    padding: 6px 16px 7px;
    font-size: 14px;
    line-height: 24px;
}

.contributor--item.style--2 .social > li > a:hover {
    color: #222;
}

.contributor--item.style--3 {
    position: relative;
    padding: 0 0 60px;
    border-width: 0;
    -webkit-transition: box-shadow .25s ease-in-out;
    transition: box-shadow .25s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.contributor--item.style--3:hover {
    box-shadow: 0 3px 20px rgba(0, 0, 0, .15);
}

.contributor--item.style--3 .img {
    margin: 0;
    max-width: none;
}

.contributor--item.style--3 .info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 17px 20px 20px;
    border-style: solid;
    border-width: 0 1px 1px;
    -webkit-transition: border-color .25s, background-color .25s ease-in-out;
    transition: border-color .25s, background-color .25s ease-in-out;
}

.contributor--item.style--3:not(:hover) .info {
    color: #999;
    background-color: #fff;
    border-color: #eee;
}

.contributor--item.style--3:hover .name .h4 {
    color: #fff;
}

.contributor--item.style--3 .social {
    margin-top: 4px;
    color: inherit;
}

.contributor--item.style--3 .social > li > a:hover {
    color: #222;
}

.contributor--item.style--3 .action {
    margin-bottom: -83px;
    -webkit-transition: margin-bottom .45s ease-in-out;
    transition: margin-bottom .45s ease-in-out;
}

.contributor--item.style--3:hover .action {
    margin-bottom: 0;
}

.contributor--item.style--3:hover .action .btn {
    border-color: #fff;
}

.contributor--item.style--3:hover .action .btn:hover {
    color: #222;
    background-color: #fff;
}

.contributor--item.style--4 {
    position: relative;
    padding: 0;
    border-width: 0;
    overflow: hidden;
    z-index: 0;
}

.contributor--item.style--4 .img {
    max-width: none;
    margin: 0;
}

.contributor--item.style--4 .info {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: 53px;
    padding: 17px 15px 20px;
    -webkit-transition: height .55s ease-in-out, padding-top .25s ease-in-out;
    transition: height .55s ease-in-out, padding-top .25s ease-in-out;
    overflow: hidden;
    z-index: 1;
}

.contributor--item.style--4:hover .info {
    padding-top: 37px;
    height: 100%;
}

.contributor--item.style--4 .info:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0.92;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=92)";
    -webkit-transition: top .55s ease-in-out;
    transition: top .55s ease-in-out;
    z-index: -1;
}

.contributor--item.style--4:hover .info:before {
    top: 20px;
}

.contributor--item.style--4 .desc {
    margin-top: 15px;
}

.contributor--item.style--4 .action {
    margin-top: 16px;
}

/* 8.10. INFO BLOCKS */
.info--block .icon {
    font-size: 40px;
    line-height: 40px;
}

.info--block .title .h5 {
    margin: 0;
    color: #222;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.info--block .title {
    margin-top: 12px;
}

.info--block .content {
    margin-top: 6px;
}

/*------------------------------------*\
    9. PORTFOLIO SECTION
\*------------------------------------*/
.portfolio--item .img {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: box-shadow .25s ease-in-out;
            transition: box-shadow .25s ease-in-out;
}

.portfolio--item:hover .img {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.portfolio--item .title {
    margin-top: 16px;
}

.portfolio--item .title .h4 {
    margin: 0;
    color: #222;
    font-weight: 600;
}

.bg--color-1 .portfolio--item .title .h4 .btn-link,
.bg--color-1 .portfolio--item:hover .title .h4 .btn-link,
.bg--color-2 .portfolio--item .title .h4 .btn-link,
.bg--color-2 .portfolio--item:hover .title .h4 .btn-link {
    color: #fff;
}

.portfolio--item:hover .title .h4 .btn-link {
    color: var(--primary-color);
}

/*------------------------------------*\
    10. PRICING SECTION
\*------------------------------------*/
/* 10.1. PRICING IMAGE */
.pricing--img {
    position: relative;
    z-index: 0;
}

.pricing--img.layout--2 {
    padding: 0 30px;
}

.pricing--img.layout--2 img {
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.15);
}

.pricing--img.layout--2 img + img {
    position: absolute;
    top: 30px;
    left: 0;
    max-width: 120px;
}

.pricing--img.layout--2 img + img + img {
    top: auto;
    left: auto;
    right: 0;
    bottom: 30px;
}

.pricing--img.layout--3 img {
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.15);
}

.pricing--img.layout--3 img + img {
    margin-top: 20px;
}

.pricing--img.layout--4 {
    padding: 45px 110px 50px 90px;
}

.pricing--img.layout--4:before {
    content: "\f04b";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 50px;
    margin: -15px auto 0;
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 10px;
    font-family: "FontAwesome";
    line-height: 30px;
    text-align: center;
    -webkit-transition: background-color .25s ease-in-out;
            transition: background-color .25s ease-in-out;
    z-index: 1;
}

.pricing--img.layout--4 img {
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.15);
}

.pricing--img.layout--4 img + img {
    position: absolute;
    top: 75px;
    left: 0;
    max-width: 120px;
}

.pricing--img.layout--4 img + img + img {
    top: 0;
    left: auto;
    right: 80px;
    max-width: 80px;
}

.pricing--img.layout--4 img + img + img + img {
    top: auto;
    right: 0;
    bottom: 120px;
    max-width: 100px;
}

.pricing--img.layout--4 img + img + img + img + img {
    left: 0;
    bottom: 0;
}

/* 10.2. PRICING CONTENT */
.pricing--content .price-tag {
    margin-bottom: 25px;
    font-size: 36px;
    line-height: 46px;
}

.pricing--content .price-tag p {
    display: inline-block;
    padding: 29px 40px 35px;
    background-color: #fff;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.15);
}

.pricing--content .price-tag strong {
    color: #222;
    font-size: 48px;
    line-height: 58px;
}

.pricing--content .price-tag strong + sub:before {
    content: "/";
    position: relative;
    top: -8px;
    color: #222;
    font-size: 48px;
    line-height: 58px;
    font-weight: 600;
}

.pricing--content .title .h3 {
    margin-bottom: 17px;
    color: #222;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing--content .features {
    margin-top: 17px;
}

.pricing--content .features .nav > li > span {
    position: relative;
    padding: 1px 0 1px 20px;
}

.pricing--content .features .nav > li > span:before {
    content: "\f046";
    position: absolute;
    left: 0;
    color: #222;
    font-family: "FontAwesome";
}

.pricing--content .action {
    margin-top: 25px;
}

/*------------------------------------*\
    11. FAQ SECTION
\*------------------------------------*/
.faq--items {
    margin-bottom: 6px;
}

.faq--item {
    background-color: transparent;
    box-shadow: none;
}

.faq--items .faq--item + .faq--item {
    margin-top: 6px;
}

.faq--item .panel-heading {
    padding: 0;
}

.faq--item .panel-title a {
    display: block;
    position: relative;
    padding-left: 24px;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.faq--item .panel-title a:before {
    content: "\f106";
    position: absolute;
    left: 0;
    color: #222;
    font-family: "FontAwesome";
}

.faq--item .panel-title a.collapsed {
    color: #777;
}

.faq--item .panel-title a.collapsed:before {
    content: "\f107";
}

.faq--item .panel-heading + .panel-collapse .panel-body {
    border-top-width: 0;
}

.faq--item .panel-body {
    margin-top: 16px;
    margin-left: 8px;
    margin-bottom: 4px;
    padding: 3px 10px 4px;
    color: #999;
    border-left: 1px solid #ddd;
}

/*------------------------------------*\
    12. LOGIN SECTION
\*------------------------------------*/
/* 12.1. LOGIN FORM */
.login--form {
    position: relative;
    max-width: 670px;
    margin: 70px auto 0;
    padding: 112px 30px 186px;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    z-index: 0;
}

.login--form:before {
    content: " ";
    position: absolute;
    top: -70px;
    left: 0;
    right: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.login--form:after {
    content: " ";
    position: absolute;
    top: -70px;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 35px;
    border-color: transparent transparent rgba(255, 255, 255, 0.18) rgba(255, 255, 255, 0.18);
    box-shadow: -5px 7px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.login--form .title {
    margin-bottom: 69px;
}

.login--form .title .h1 {
    margin: 0;
    font-weight: 600;
}

.login--form .title p {
    margin-top: 12px;
    color: #ccc;
    font-size: 16px;
    line-height: 26px;
}

.login--form form {
    max-width: 470px;
    margin: 0 auto;
}

.login--form .form-group {
    margin-bottom: 0;
}

.login--form .form-group + .form-group {
    margin-top: 23px;
}

.login--form label {
    display: block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: left;
}

.login--form label span {
    display: block;
    margin-bottom: 8px;
    color: #999;
}

.login--form .form-control {
    color: #fff;
    border-color: #999;
}

.login--form .form-control:focus {
    border-color: var(--primary-color);
}

.login--form .checkbox {
    margin: 23px 0 0;
}

.login--form .checkbox input {
    display: none;
}

.login--form .checkbox label {
    padding-left: 20px;
}

.login--form .checkbox label span {
    margin-bottom: 0;
}

.login--form .checkbox span:before {
    content: " ";
    position: absolute;
    top: 7px;
    left: 0;
    width: 10px;
    height: 10px;
    border: 1px solid;
}

.login--form .checkbox span:after {
    content: "\f00c";
    position: absolute;
    top: -0.5px;
    left: 1.5px;
    font-family: "FontAwesome";
    font-size: 8px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .25s;
            transition: opacity .25s;
}

.login--form .checkbox input:checked + span:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.login--form .btn {
    margin-top: 23px;
    padding-top: 5px;
    padding-bottom: 7px;
}

.login--form .help-block {
    margin-top: 7px;
    color: #999;
}

/*------------------------------------*\
    13. COMING SOON SECTION
\*------------------------------------*/
/* 13.1. COMING SOON CONTENT */
.coming-soon--content {
    position: relative;
    margin-top: 70px;
    padding: 10px 30px 74px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.coming-soon--content:before {
    content: " ";
    position: absolute;
    top: -70px;
    left: 0;
    right: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.coming-soon--content:after {
    content: " ";
    position: absolute;
    top: -70px;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 35px;
    border-color: transparent transparent rgba(255, 255, 255, 0.28) rgba(255, 255, 255, 0.28);
    box-shadow: -5px 7px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.coming-soon--content .logo {
    margin-bottom: 73px;
}

.coming-soon--content .title .h2 {
    margin: 0;
    font-weight: 600;
}

.coming-soon--content .countdown {
    margin-top: 22px;
}

.coming-soon--content .sub-title {
    margin-top: 33px;
}

.coming-soon--content .sub-title .h4 {
    margin: 0;
    font-weight: 600;
}

.coming-soon--content .content {
    margin-top: 19px;
    color: #ccc;
}

.coming-soon--content .subscribe--widget {
    margin-top: 31px;
    padding: 0;
    background-color: transparent;
}

.coming-soon--content .subscribe--widget .input-group {
    position: relative;
    padding: 5px;
    z-index: 0;
}

.coming-soon--content .subscribe--widget .form-control {
    height: 30px;
    padding-top: 2px;
    padding-bottom: 2px;
    color: #fff;
    background-color: transparent;
}

.coming-soon--content .subscribe--widget .input-group-btn {
    position: static;
}

.coming-soon--content .subscribe--widget .input-group-btn:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #999;
    -webkit-transition: border-color .25s;
            transition: border-color .25s;
    z-index: -1;
}

.coming-soon--content .subscribe--widget input:focus + .input-group-btn:before {
    border-color: var(--primary-color);
}

.coming-soon--content .subscribe--widget .btn {
    padding-top: 1px;
    padding-bottom: 1px;
}

.coming-soon--content .social {
    margin-top: 33px;
}

.coming-soon--content .social p {
    margin-bottom: 9px;
}

.coming-soon--content .social .nav {
    margin: 0 -10px;
    color: #999;
    font-size: 0;
    line-height: 0;
}

.coming-soon--content .social .nav > li {
    display: inline-block;
    margin: 10px 10px 0;
}

.coming-soon--content .social .nav > li > a {
    padding: 0;
    font-size: 14px;
    line-height: 24px;
}

/*------------------------------------*\
    14. 404 SECTION
\*------------------------------------*/
/* 14.1. 404 CONTENT */
.f0f--content {
    position: relative;
    margin-top: 70px;
    padding: 20px 30px 120px;
    color: #999;
    background-color: rgba(255, 255, 255, 0.2);
    text-align: center;
    z-index: 0;
}

.f0f--content:before {
    content: " ";
    position: absolute;
    top: -70px;
    left: 0;
    right: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;
    display:none
}

.f0f--content:after {
    content: " ";
    position: absolute;
    top: -70px;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 35px;
    border-color: transparent transparent rgba(255, 255, 255, 0.28) rgba(255, 255, 255, 0.28);
    box-shadow: -5px 7px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
    display:none
}

.f0f--content .title .h1 {
    margin: 0;
    font-size: 120px;
    line-height: 130px;
}

.f0f--content .sub-title {
    margin-top: 5px;
}

.f0f--content .sub-title .h5 {
    margin: 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}

.f0f--content .search--widget {
    margin-top: 33px;
    padding: 0;
    box-shadow: none;
}

.f0f--content .search--widget .form-control {
    color: #999;
}

.f0f--content .search--widget .input-group-btn {
    color: #999;
}

.f0f--content .search--widget .input-group-btn:before {
    border-color: #999;
}

.f0f--content .note {
    margin-top: 33px;
}

.f0f--content .action {
    margin-top: 26px;
}

/*------------------------------------*\
    15. CART SECTION
\*------------------------------------*/
/* 15.1. CART ITEMS */
.cart--items .table {
    margin-bottom: 0;
    border-color: #eee;
}

.cart--items .table thead tr th,
.cart--items .table tbody tr td {
    padding: 0;
    border-color: #eee;
    text-align: center;
    vertical-align: middle;
}

.cart--items .table thead tr th {
    padding: 16px 20px;
    color: #222;
    background-color: #eee;
    border-bottom-width: 0;
    font-family: "Lora", serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.cart--items .table tbody tr td {
    padding: 15px;
    border-width: 1px 0;
    font-weight: 600;
}

.cart--items .table tbody tr td .img {
    display: inline-block;
    position: relative;
    z-index: 0;
}

.cart--items .table tbody tr td .img:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .25s ease-in-out;
            transition: opacity .25s ease-in-out;
    z-index: 1;
}

.cart--items .table tbody tr:hover td .img:before {
    opacity: 0.35;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=35)";
}

.cart--items .product--quantity .ui-spinner {
    margin-top: 0;
    margin-right: 0;
}

.cart--items .footer {
    padding: 30px 45px;
    border-style: solid;
    border-width: 0 1px 1px;
    border-color: #eee;
}

.cart--items .footer .coupon--code {
    max-width: 410px;
}

.cart--items .footer .coupon--code .form-control {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
}

.cart--total .table {
    margin-bottom: 10px;
    background-color: #f0f0f0;
}

.cart--total .table tr td {
    padding: 6px 20px;
    border-width: 0;
    border-color: #fff;
    font-size: 16px;
    line-height: 28px;
}

.cart--total .table tr + tr td {
    border-top-width: 1px;
}

/*------------------------------------*\
    16. CHECKOUT SECTION
\*------------------------------------*/
/* 16.1. CHECKOUT INFO */
.checkout--info .title {
    padding: 19px 20px 17px;
    color: #999;
    background-color: #f0f0f0;
}

.checkout--info .title .fa {
    color: var(--primary-color);
    margin-right: 5px;
}

.checkout--info .title a {
    display: inline-block;
    color: #777;
    font-weight: 500;
}

.checkout--info .title a:hover,
.checkout--info .title a.active {
    color: var(--primary-color);
}

.checkout--info-form {
    display: none;
    padding-top: 30px;
}

.checkout--info-form p {
    margin-bottom: 19px;
}

.checkout--info-form p:last-child {
    margin-bottom: 0;
}

.checkout--info-form .form-group {
    margin-bottom: 30px;
}

.checkout--info-form .form-group label span {
    display: inline-block;
}

.checkout--info-form label {
    font-weight: 400;
}

.checkout--info-form .form-control {
    border-color: #eee;
}

.checkout--info-form .form-control:focus {
    border-color: var(--primary-color);
}

.checkout--info-form .submit-btn-group {
    font-size: 0;
    line-height: 0;
}

.checkout--info-form .checkbox {
    display: inline-block;
    margin: 0;
    color: #999;
    font-size: 14px;
    line-height: 24px;
    vertical-align: middle;
}

.checkout--info-form .checkbox input {
    display: none;
}

.checkout--info-form .checkbox span {
    position: relative;
    display: block;
    padding-left: 19px;
}

.checkout--info-form .checkbox span:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    margin-top: -6px;
    border: 1px solid #eee;
}

.checkout--info-form .checkbox span:after {
    content: "\f00c";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    margin-top: -10px;
    font-family: "FontAwesome";
    font-size: 8px;
    line-height: 18px;
    text-align: center;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .25s;
            transition: opacity .25s;
}

.checkout--info-form .checkbox input:checked + span:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.checkout--info-form .help-block {
    margin-top: 24px;
    color: #999;
}

.checkout--info-form .help-block a {
    border-bottom: 1px solid;
    line-height: 18px;
}

.checkout--info-form .input-group {
    max-width: 450px;
}

.checkout--info-form .input-group .form-control {
    background-color: #f0f0f0;
}

/* 16.2. CHECKOUT BILLING INFO */
.checkout--billing-info .form-group {
    margin-bottom: 14px;
}

.checkout--billing-info .form-group.pbottom--60 {
    margin-bottom: 0;
}

.checkout--billing-info label {
    display: block;
    margin-bottom: 0;
    padding-left: 0;
    font-weight: normal;
}

.checkout--billing-info label span {
    display: block;
    margin-bottom: 3px;
    color: #999;
}

.checkout--billing-info .form-control {
    border-color: #eee;
    font-size: 14px;
}

.checkout--billing-info .form-control:focus {
    border-color: var(--primary-color);
}

.checkout--billing-info .checkbox {
    display: inline-block;
    margin: 0;
    color: #999;
    font-size: 14px;
    line-height: 24px;
    vertical-align: middle;
}

.checkout--billing-info .checkbox > label > input {
    display: none;
}

.checkout--billing-info .checkbox > label > span {
    position: relative;
    display: block;
    padding-left: 19px;
}

.checkout--billing-info .checkbox > label > span:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border: 1px solid #eee;
}

.checkout--billing-info .checkbox > label > span:after {
    content: "\f00c";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    margin-top: -10px;
    font-family: "FontAwesome";
    font-size: 8px;
    line-height: 18px;
    text-align: center;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .25s;
            transition: opacity .25s;
}

.checkout--billing-info .checkbox > label > input:checked + span:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.checkout--billing-info .table tbody tr th,
.checkout--billing-info .table tbody tr td {
    position: relative;
    padding: 11px 20px 9px;
    background-color: #f9f9f9;
    border-width: 1px 0;
    border-color: #fff;
    z-index: 0;
}

.checkout--billing-info .table tbody tr th {
    color: #222;
}

.checkout--billing-info .table tbody tr td span {
    color: var(--primary-color);
}

.checkout--billing-info .table tbody tr th + th,
.checkout--billing-info .table tbody tr td + td {
    text-align: right;
}

.checkout--billing-info .table tbody tr th + th:before,
.checkout--billing-info .table tbody tr td + td:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    background-color: #eee;
}

.checkout--billing-info .table tbody tr th {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    background-color: #f9f9f9;
}

.checkout--billing-info .panel-group {
    margin-bottom: 0;
}

.checkout--billing-info .panel-group .panel {
    border: 0;
    box-shadow: none;
}

.checkout--billing-info .panel-group .panel + .panel {
    margin-top: 16px;
}

.checkout--billing-info .panel-group .panel-heading {
    padding: 0;
    border-radius: 0;
}

.checkout--billing-info .panel-group .panel-title label input {
    display: none;
}

.checkout--billing-info .panel-group .panel-title label {
    position: relative;
    margin-bottom: 0;
    color: #fd8469;
    cursor: pointer;
}

.checkout--billing-info .panel-group .panel-title label.collapsed {
    color: #999;
}

.checkout--billing-info .panel-group .panel-title label span {
    display: block;
    padding-left: 20px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
}

.checkout--billing-info .panel-group .panel-title label span:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    margin-top: -6px;
    border: 1px solid #eee;
    border-radius: 50%;
}

.checkout--billing-info .panel-group .panel-title label span:after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 3px;
    width: 4px;
    height: 4px;
    margin-top: -3px;
    background-color: #999;
    border-radius: 50%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .25s;
            transition: opacity .25s;
}

.checkout--billing-info .panel-group .panel-title label input:checked + span:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.checkout--billing-info .panel-group .panel-collapse .panel-body {
    border: 0;
    padding: 8px 0 0;
    color: #999;
    font-weight: 300;
}

/*------------------------------------*\
    17. COUNTER SECTION
\*------------------------------------*/
.counter--item {
    position: relative;
    padding: 60px;
    z-index: 0;
}

.counter--item:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .25s ease-in-out;
    transition: opacity .25s ease-in-out;
    z-index: -1;
}

.counter--item.even:before {
    opacity: 0.05;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=5)";
}

.counter--item:hover:before {
    opacity: 0.1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
}

.counter--item .icon {
    margin-bottom: 17px;
    font-size: 30px;
    line-height: 40px;
}

.counter--item .text {
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.counter--item .num {
    margin-top: 15px;
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
    text-transform: uppercase;
}

/*------------------------------------*\
    18. CONTACT SECTION
\*------------------------------------*/
/* 18.1. CONTACT INFO */
.contact--info .nav > li + li {
    margin-top: 30px;
}

.contact--info .title {
    margin-bottom: 9px;
    color: #222;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.contact--info .title .fa {
    min-width: 16px;
    margin-right: 8px;
}

.contact--info .title .h5 {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.contact--info .content {
    font-weight: 600;
}

.contact--info .content p {
    margin-bottom: 0;
}

/*------------------------------------*\
    19. FOOTER SECTION
\*------------------------------------*/
/* 19.1. FOOTER WIDGETS */
.footer--widgets.bg--color-2 {
    color: #777;
}

/* 19.2. FOOTER COPYRIGHT */
.footer--copyright {
    position: relative;
    z-index: 0;
}

.footer--copyright.bg--color-3 {
    color: #777;
}

.footer--copyright .social--bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.footer--copyright .text {
    margin-bottom: 0;
    padding: 27px 0;
    font-size: 16px;
    line-height: 26px;
}

.footer--copyright .nav > li {
    float: left;
}

.footer--copyright .nav > li > a {
    padding: 0;
}

.footer--copyright .links {
    padding: 32px 30px 32px 0;
    font-size: 0;
    line-height: 0;
}

.footer--copyright .links > li + li {
    margin-left: 12px;
    padding-left: 11px;
    border-left: 1px solid;
}

.footer--copyright .links > li > a {
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
}

.footer--copyright .social {
    padding: 28px 0 28px 22px;
}

.footer--copyright .social > li {
    margin: 0 9px;
}

.footer--copyright ul.social > li > a {
    color: #fff;
    -webkit-transition: opacity .25s;
            transition: opacity .25s;
}

.footer--copyright .social > li > a:hover {
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

/* 20. STICKY SOCIAL */
#stickySocial {
    position: fixed;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 0;
    line-height: 0;
    z-index: 999;
}

#stickySocial .nav {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
}

#stickySocial .nav > li > a {
    position: relative;
    padding: 0;
    z-index: 0;
}

#stickySocial .nav > li > a > i {
    display: block;
    width: 42px;
    color: #aabbcc;
    background-color: #f5f6f7;
    border: 1px solid #eee;
    line-height: 42px;
    text-align: center;
    -webkit-transition: color .25s, border-color .25s, background-color .25s ease-in-out;
    transition: color .25s, border-color .25s, background-color .25s ease-in-out;
}

#stickySocial .nav > li > a:hover > i {
    color: #fff;
    background-color: #eee;
}

#stickySocial .nav > li + li > a > i {
    border-top-width: 0;
}

#stickySocial .nav > li > a > span {
    position: absolute;
    top: 50%;
    right: 100%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-right: 10px;
    padding: 0 10px;
    color: #fff;
    background-color: #eee;
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition: opacity .25s ease-in-out, visibility .25s ease-in-out;
    transition: opacity .25s ease-in-out, visibility .25s ease-in-out;
}

#stickySocial .nav > li > a:hover > span {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}

#stickySocial .nav > li > a > span:before {
    content: " ";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 0;
    height: 0;
    margin-top: -4px;
    border-style: solid;
    border-width: 5px;
    border-color: #eee;
    border-top-color: transparent !important;
    border-bottom-color: transparent !important;
}

#stickySocial.sticky--right .nav > li > a > span:before {
    border-right-color: transparent !important;
}

#stickySocial.sticky--left {
    left: 0;
    right: auto;
}

#stickySocial.sticky--left .nav > li > a > span {
    left: 100%;
    right: auto;
    margin-left: 10px;
    margin-right: 0;
}

#stickySocial.sticky--left .nav > li > a > span:before {
    left: -10px;
    right: 0;
    border-left-color: transparent !important;
}

/* 21. BACK TO TOP BUTTON */
#backToTop {
    position: fixed;
    right: 30px;
    bottom: 50px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition-property: opacity, visibility;
            transition-property: opacity, visibility;
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
    z-index: 999;
}

body.isScrolling #backToTop {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}

#backToTop a {
    display: block;
    width: 50px;
    color: #777;
    background-color: #000;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
}

#backToTop a:hover {
    color: #fff;
    background-color: var(--primary-color);
}

:root {
    --header-offset: 261px; /* Initial value */
    --scrolled-header-offset: 68px; /* Value after scrolling */
    --container-width: 1450px; /* Adjust based on your layout */
}

@media screen and (min-width: 1450px) {

    .sticky-ad.left {
        position: fixed;
        left: 0;
        top: 0px;
        width: 160px;
        z-index: 999;
        margin-top: var(--header-offset);
        margin-left: calc(50vw - (var(--container-width) / 2) - 160px - 10px);
    }

    .sticky-ad.right {
        position: fixed;
        top: 0px;
        width: 160px;
        z-index: 999;
        margin-top: var(--header-offset);
        right: calc(50vw - (var(--container-width) / 2) - 160px - 10px);
    }

     /* Class added when scrolled */
    body.scrolled .sticky-ad.left,
    body.scrolled .sticky-ad.right {
        margin-top: var(--scrolled-header-offset);
    }

}