﻿@charset UTF-8;
body
{
    background: #f8f8f8;
    color: #5e5e5e;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
}
a
{
    cursor: pointer;
    color: #5e5e5e;
    moz-transition: all .2s;
    o-transition: all .2s;
    text-decoration: none;
    transition: all .2s;
    webkit-transition: all .2s;
}
a:hover
{
    color: #256dc1;
    text-decoration: none;
}
a:hover,a:focus
{
    outline: 0;
    text-decoration: none;
}
a:active
{
    outline: 0;
    text-decoration: none;
}
.clear-float
{
    clear: both;
}
.wrapper
{
    color: inherit;
    margin: 0 auto;
    position: relative;
    width: 1200px;
}
.boxed
{
    background: #f8f8f8;
}
.active.boxed
{
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    margin: 0 auto;
    min-height: 100%;
    padding: 0;
    width: 1230px;
}
.left
{
    float: left;
}
.right
{
    float: right;
}
i.wi,i.fa
{
    font-weight: 400;
    line-height: inherit;
}
img
{
    height: auto;
    max-width: 100%;
}
h1 a,h2 a,h3 a,h4 a,h5 a,h6 a
{
    color: #313131;
}
h1,h2,h3,h4,h5,h6
{
    color: #313131;
    font-weight: 700;
    letter-spacing: -.4px;
    margin-top: 0;
}
a.post-title-comment
{
    color: #256dc1;
    display: inline-block;
    font-size: 88%;
    font-weight: 700;
    margin-left: 5px;
}
a.post-title-comment i
{
    padding-right: 2px;
}
a.post-title-comment:hover
{
    color: #232323;
}
p
{
    font-family: Open Sans,Arial,sans-serif;
    margin-bottom: 20px;
}
#header .header-logo
{
    display: block;
    padding: 30px 0;
}
#header .header-panels
{
    display: table;
    width: 100%;
}
#header .header-panels>div
{
    display: table-cell;
    vertical-align: middle;
}
#header .header-panels:after,#header:after
{
    clear: both;
    content: '';
    display: block;
}
#header .header-panels .header-pob
{
    padding: 10px 0;
    width: 728px;
}
#header .header-socials
{
    cursor: default;
    padding: 0 20px;
    white-space: nowrap;
}
#header .header-socials a
{
    display: inline-block;
    margin: 0 2px;
    text-align: center;
}
#header .header-socials a i
{
    background: #382e1c;
    border-radius: 50%;
    color: #fff;
    display: block;
    font-size: 12px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    width: 30px;
}
#header .header-socials a:hover i
{
    background: #5d5d5d;
}
#header .header-socials a span
{
    display: block;
    font-size: 10px;
    font-weight: 600;
    padding-top: 4px;
}

.header-tools {
    white-space: nowrap;
    padding-top:12px;
    text-align: right;
}
.header-tools a {
    background:#256DC1;
/*    border-radius: 50%;*/
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    height: 30px;
    line-height: 27px;
    text-align: center;
    width: 30px;
}
.header-tools a:hover,.header-tools a.active {
    background:#2161AC;
}

#main-menu
{
    background: #256dc1;
    color: #fff;
    display: block;
    font-size: 14px;
}
#main-menu a
{
    color: inherit;
}
#main-menu .wrapper>ul
{
    display: block;
    margin-bottom: 0;
}
#main-menu .wrapper>ul:after
{
    clear: both;
    content: '';
    display: block;
}
#main-menu .wrapper>ul>li
{
    display: block;
    float: left;
}
#main-menu .wrapper>ul li>a
{
    display: block;
    font-weight: 700;
/*    letter-spacing: -.4px;*/
    line-height: 14px;
    padding: 20px 12px 18px;
    position: relative;
/*    white-space: nowrap;*/
}
#main-menu .wrapper>ul>li>a
{
    border-bottom: 2px solid transparent;
}
#main-menu .wrapper>ul li:hover>a
{
    background: rgba(0,0,0,.11);
}
#main-menu .wrapper>ul ul.sub-menu li:hover>a
{
    background: rgba(0,0,0,.05);
}
#main-menu .wrapper>ul li>a span
{
    line-height: 14px;
    line-height: inherit;
    margin: -20px -12px;
    moz-transition: all .2s;
    o-transition: all .2s;
    padding: 14px 12px 18px;
    transition: all .2s;
    webkit-transition: all .2s;
}
#main-menu .wrapper>ul>li:hover>a span
{
    background: #fff;
    color: #232323;
    padding: 14px 12px 20px;
}
#main-menu .wrapper>ul li>a span:after
{
    bottom: 7px;
    content: '...';
    filter: alpha(opacity=70);
    left: 50%;
    letter-spacing: 1px;
    ms-transform: translate(-50%,0);
    opacity: .7;
    position: absolute;
    transform: translate(-50%,0);
    webkit-transform: translate(-50%,0);
}
#main-menu .wrapper>ul ul.sub-menu
{
    background: #fff;
    box-shadow: 0 2px 3px rgba(0,0,0,.1),0 20px 40px rgba(0,0,0,.15);
    display: none;
    position: absolute;
    min-width: 250px;
    z-index: 10;
}
#main-menu .wrapper>ul li:hover>ul.sub-menu
{
    animation: fadein .2s;
    display: block;
    webkit-animation: fadein .2s;
}
@keyframes fadein
{
    from
    {
        opacity: 0;
    }
    to
    {
        opacity: 1;
    }
}
@-webkit-keyframes fadein
{
    from
    {
        opacity: 0;
    }
    to
    {
        opacity: 1;
    }
}
#main-menu .wrapper>ul ul.sub-menu li
{
    display: block;
    position: relative;
}
#main-menu .wrapper>ul ul.sub-menu li>a
{
    color: #232323;
    display: block;
    padding: 12px 12px 11px;
}
#main-menu .wrapper>ul ul.sub-menu li>a span:after
{
    content: '.\A.\A.';
    height: 10px;
    left: auto;
    line-height: 5px;
    right: 0;
    top: 15px;
    white-space: pre;
    width: 15px;
}
#main-menu .wrapper ul.sub-menu ul.sub-menu
{
    left: 100%;
    top: 0;
}
#main-menu li.has-ot-mega-menu>ul.ot-mega-menu>li
{
    display: table;
    vertical-align: top;
}
#main-menu li.has-ot-mega-menu>ul.ot-mega-menu .widget
{
    display: block;
    font-size: 14px;
    max-width: 100%;
    padding-top: 0;
    width: 300px;
}
#main-menu li.has-ot-mega-menu>ul.ot-mega-menu .widget:first-child
{
    padding-top: 30px;
}
.widget-split
{
    border-right: 1px dotted rgba(0,0,0,.1);
    display: table-cell;
    max-width: 350px;
    padding: 0 20px;
    vertical-align: top;
    white-space: normal;
}
.widget-split:last-child
{
    border-right: 0;
}
.widget-split .widget
{
    margin-bottom: 20px;
}
.widget-split .widget:last-child
{
    margin-bottom: 0;
}
#main-menu ul.ot-mega-menu a
{
    color: #3f3f3f;
    padding: 0;
}
#main-menu ul.ot-mega-menu a:hover {
    color:#000;
}
#main-menu ul.ot-mega-menu
{
    background: #fff;
    box-shadow: 0 2px 3px rgba(0,0,0,.1),0 20px 40px rgba(0,0,0,.15);
    color: #8e8e8e;
    display: none;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 10;
}
#main-menu li:hover>ul.ot-mega-menu
{
    animation: fadein .2s;
    display: inline-block;
    webkit-animation: fadein .2s;
    width: auto;
}
ul.ot-mega-menu .widget
{
    padding: 30px 15px;
    vertical-align: top;
}
ul.ot-mega-menu .widget>h3
{
    border-bottom: 2px solid #efefef;
    color: #232323;
    display: block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.4px;
    margin-bottom: 17px;
    margin-top: 0;
    padding-bottom: 15px;
}
ul.ot-mega-menu .widget .widget-article-list .item .item-content .item-meta a:nth-child(2)
{
    display: none;
}
#top-menu
{
    border-bottom: 1px solid #e4e3e2;
    color: #7a7a79;
    display: block;
    font-size: 13px;
    font-size: 14px;
    letter-spacing: -.4px;
    position: relative;
    z-index: 12;
}
#top-menu .wrapper>ul
{
    display: block;
    font-weight: 700;
    margin-bottom: 0;
}
#top-menu .wrapper>ul:after
{
    clear: both;
    content: '';
    display: block;
}
#top-menu .wrapper>ul li
{
    display: block;
    float: left;
    position: relative;
}
#top-menu .wrapper>ul li a
{
    color: #7a7a79;
    display: block;
    line-height: 100%;
    padding: 16px 8px;
}
#top-menu .wrapper>ul li a span
{
    display: block;
    line-height: inherit;
    position: relative;
}
#top-menu .wrapper>ul li a span:after
{
    content: '\f107';
    display: inline-block;
    font-family: FontAwesome;
    line-height: inherit;
    padding-left: 5px;
}
#top-menu .wrapper>ul ul.sub-menu li a span:after
{
    content: '\f105';
    position: absolute;
    right: 0;
}
#top-menu .wrapper>ul li:hover>a
{
    background-color: #fff;
    color: #232323;
}
#top-menu .wrapper>ul ul.sub-menu li:hover>a
{
    background-color: rgba(0,0,0,.04);
}
#top-menu .wrapper>ul ul.sub-menu
{
    background: #fff;
    box-shadow: 0 2px 3px rgba(0,0,0,.1);
    display: none;
    left: 0;
    position: absolute;
    width: 230px;
}
#top-menu .wrapper>ul li:hover>ul.sub-menu
{
    animation: fadein .2s;
    display: block;
    webkit-animation: fadein .2s;
}
#top-menu .wrapper>ul ul.sub-menu li
{
    display: block;
    float: none;
}
#top-menu .wrapper>ul ul.sub-menu ul.sub-menu
{
    left: 100%;
    top: 0;
}
.top-panel-weather
{
    line-height: 45px;
}
.top-panel-weather strong
{
    display: inline-block;
    padding: 0 6px;
}
.top-panel-weather .w-stats
{
    background-color: #86898e;
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    font-weight: 700;
    line-height: 29px;
    padding: 0 10px;
    vertical-align: middle;
}
.top-panel-weather .w-stats i
{
    padding-right: 6px;
}
.search-nav
{
    display: block;
    line-height: 54px;
    position: relative;
}
.search-nav input
{
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    height: 54px;
    moz-transition: all .2s;
    o-transition: all .2s;
    padding-bottom: 0;
    padding-top: 0;
    position: absolute;
    right: 0;
    transition: all .2s;
    webkit-transition: all .2s;
    width: 80px;
}
.search-nav input.active,.search-nav input:focus
{
    cursor: text;
    right: 25px;
    width: 150px;
}
.search-nav button
{
    background: transparent;
    border: 0;
    height: 54px;
    line-height: inherit;
    margin: 0;
    padding-bottom: 0;
    padding-top: 0;
    right: 0;
    vertical-align: baseline;
}
.search-nav input::-webkit-input-placeholder
{
    color: rgba(255,255,255,.9);
}
.search-nav input:-moz-placeholder
{
    color: rgba(255,255,255,.9);
}
.search-nav input::-moz-placeholder
{
    color: rgba(255,255,255,.9);
}
.search-nav input:-ms-input-placeholder
{
    color: rgba(255,255,255,.9);
}
#main-menu .widget>ul>li
{
    background: transparent!important;
    color: #ccc;
}
#main-menu .widget>ul>li a
{
    background-color: transparent!important;
    display: inline;
    padding: 0;
}
#content
{
    display: block;
    padding-bottom: 30px;
}
#khoda-read-later
{
    border-bottom: 1px solid #e4e3e2;
    display: none;
}
#khoda-read-later.remove
{
    display: block;
    display: none;
}
#khoda-read-later .wrapper
{
    position: relative;
}
#khoda-read-later-info
{
    color: rgba(150,150,150,.5);
    cursor: pointer;
    margin-top: 23px;
    moz-transition: all .2s;
    o-transition: all .2s;
    padding-right: 20px;
    position: absolute;
    right: 100%;
    text-align: right;
    transition: all .2s;
    webkit-transition: all .2s;
    white-space: nowrap;
}
.boxed.active #khoda-read-later-info
{
    padding-right: 40px;
}
#khoda-read-later:hover #khoda-read-later-info
{
    color: #909090;
}
#khoda-read-later #khoda-read-later-info:hover
{
    color: #232323;
}
.boxed.active #khoda-read-later #khoda-read-later-info:hover,.boxed.active #khoda-read-later:hover #khoda-read-later-info
{
    color: rgba(150,150,150,.9);
}
#khoda-read-later-info strong
{
    display: block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.4px;
    line-height: 120%;
}
#khoda-read-later-info span
{
    display: block;
    font-size: 14px;
}
#khoda-read-later .article-list
{
    display: block;
    position: relative;
}
#khoda-read-later .article-list .item
{
    display: table;
    float: left;
    padding: 15px 0;
    width: 20%;
}
#khoda-read-later .article-list .item .item-header
{
    display: table-cell;
    vertical-align: middle;
    width: 60px;
}
#khoda-read-later .article-list .item .item-content
{
    display: table-cell;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: middle;
}
#khoda-read-later .article-list .item:last-child .item-content
{
    padding-right: 0;
}
#khoda-read-later .article-list .item .item-content h3
{
    font-size: 13px;
    font-weight: 700;
    line-height: 130%;
    margin: 0;
}
#khoda-read-later .article-list .item:after,#khoda-read-later .article-list:after
{
    clear: both;
    content: '';
    display: block;
}
.owl-carousel .owl-nav
{
    filter: alpha(opacity=0);
    moz-transition: all .2s;
    opacity: 0;
    o-transition: all .2s;
    transition: all .2s;
    transition-delay: 1s;
    webkit-transition: all .2s;
    webkit-transition-delay: 1s;
}
.owl-carousel:hover .owl-nav
{
    filter: alpha(opacity=100);
    opacity: 1;
    transition-delay: 0s;
    webkit-transition-delay: 0s;
}
.owl-controls .owl-nav .owl-prev
{
    background: transparent;
    border: 2px solid rgba(204,204,204,.4);
    border-radius: 50%;
    color: #8a8a8a;
    font-size: 0;
    height: 40px;
    line-height: 38px;
    margin-right: 20px;
    margin-top: -20px;
    moz-transition: all .2s;
    o-transition: all .2s;
    position: absolute;
    right: 100%;
    text-align: center;
    top: 50%;
    transition: all .2s;
    webkit-transition: all .2s;
    width: 40px;
}
.owl-controls .owl-nav .owl-next:before,.owl-controls .owl-nav .owl-prev:before
{
    content: "\f053";
    display: block;
    font-family: FontAwesome;
    font-size: 12px;
    left: 0;
    line-height: inherit;
    position: absolute;
    top: 0;
    width: 100%;
}
.owl-controls .owl-nav .owl-next:before
{
    content: "\f054";
}
.owl-controls .owl-nav .owl-next:hover,.owl-controls .owl-nav .owl-prev:hover
{
    background-color: #aaa;
    border-color: transparent;
    color: #fff;
}
.owl-controls .owl-nav .owl-next
{
    background: transparent;
    border: 2px solid rgba(204,204,204,.4);
    border-radius: 50%;
    color: #8a8a8a;
    font-size: 0;
    height: 40px;
    left: 100%;
    line-height: 38px;
    margin-left: 20px;
    margin-top: -20px;
    moz-transition: all .2s;
    o-transition: all .2s;
    position: absolute;
    text-align: center;
    top: 50%;
    transition: all .2s;
    webkit-transition: all .2s;
    width: 40px;
}
.paragraph-row.khoda-main-content-panel,.khoda-main-content-panel
{
    display: block;
    margin-bottom: 30px;
    margin-top: 30px;
}
.khoda-main-content-panel hr.block-hr
{
    border-color: #e4e3e2;
    margin: 0;
}
.khoda-main-content-panel .block-category-list
{
    display: table;
    text-align: center;
    width: 100%;
}
.khoda-main-content-panel .block-category-list .item
{
    border-right: 1px solid #ececec;
    color: #8a8a8a;
    display: table-cell;
    padding: 8px 0;
    text-align: center;
    width: 9%;
}
.khoda-main-content-panel .block-category-list .item:last-child
{
    border-right: 0;
}
.khoda-main-content-panel .block-category-list .item.active,.khoda-main-content-panel .block-category-list .item:hover
{
    color: #256dc1;
}
.khoda-main-content-panel .block-category-list .item i.ti,.khoda-main-content-panel .block-category-list .item i.fa
{
    display: block;
    font-size: 23px;
    line-height: 100%;
    padding-bottom: 5px;
    text-align: center;
}
.khoda-main-content-panel .block-category-list .item strong
{
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -.4px;
    text-align: center;
}
.khoda-article-slider-min h3
{
    font-size: 14px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 0;
    margin-top: 12px;
}
.khoda-article-slider-min .item-photo
{
    display: block;
    position: relative;
}
.khoda-article-slider-min .item-article-category
{
    bottom: 0;
    color: #232323;
    display: block;
    font-size: 11px;
    font-weight: 700;
    left: 0;
    padding: 4px 7px;
    position: absolute;
}
.khoda-article-slider-big .item-photo
{
    backface-visibility: hidden;
    color: #fff;
    display: block;
    moz-backface-visibility: hidden;
    moz-transform: translateX(0);
    ms-transform: translateX(0);
    overflow: hidden;
    position: relative;
    text-shadow: 0 1px 1px rgba(0,0,0,.5);
    transform: translateX(0);
    webkit-backface-visibility: hidden;
    webkit-transform: translateX(0);
}
.khoda-article-slider-big .item-photo:before
{
    background-color: rgba(0,0,0,.2);
    box-shadow: inset 0 -400px 200px -200px rgba(0,0,0,.4);
    content: '';
    display: block;
    height: 100%;
    left: 0;
    moz-transition: all .2s;
    o-transition: all .2s;
    position: absolute;
    top: 0;
    transition: all .2s;
    webkit-transition: all .2s;
    width: 100%;
    z-index: 1;
}
.khoda-article-slider-big .item-photo:hover:before
{
    background-color: rgba(0,0,0,.5);
}
.khoda-article-slider-big .item-photo .item-content
{
    bottom: 0;
    display: block;
    left: 0;
    padding: 24px;
    position: absolute;
    width: 100%;
/*    background: rgba(61,61,61,0.7);*/
    z-index: 3;
}
.khoda-article-slider-big .item-article-category
{
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}
.khoda-article-slider-big .item-article-title
{
    display: block;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -.4px;
    margin-bottom: 7px;
}
.khoda-article-slider-big .item-article-text
{
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 10px;
}
.khoda-article-slider-big .item-meta
{
    display: block;
    font-size: 13px;
    font-weight: 600;
}
.khoda-article-slider-big .item-meta>span
{
    display: inline-block;
    margin-right: 8px;
}
.khoda-article-slider-big .item-meta>span i
{
    display: inline-block;
    padding-right: 5px;
}
.khoda-article-slider-big .item-small .item-photo
{
    float: left;
    width: 50%;
}
.khoda-article-slider-big .item-small .item-photo:before
{
    box-shadow: inset 0 -200px 100px -100px rgba(0,0,0,.4);
}
.khoda-article-slider-big .item-small .item-content
{
    padding: 20px;
    width: 100%;
}
.khoda-article-slider-big .item-small .item-article-category
{
    font-size: 12px;
}
.khoda-article-slider-big .item-small .item-article-title
{
    font-size: 15px;
}
.khoda-article-slider-big .item-small .item-article-text
{
    display: none;
}
.khoda-article-slider-big .item-small .item-meta
{
    font-size: 11px;
}
.khoda-main-content-s-block
{
    display: block;
}
.khoda-main-content-s-block:after
{
    clear: both;
    content: '';
    display: block;
}
.khoda-main-content-s-block .khoda-main-content
{
    display: block;
    float: left;
    margin-left: 2.916666666666667%;
    width: 55.83333333333333%;
}
.khoda-main-content-s-block .khoda-main-content:first-child
{
    margin-left: 0;
}
.khoda-main-content-s-block .khoda-main-content.khoda-main-content-s-2
{
    width: 71.5%;
}
.khoda-main-content-s-block .khoda-main-content.khoda-main-content-s-3
{
    width: 83.75%;
}
.khoda-main-content-s-block .khoda-main-content.khoda-main-content-s-4
{
    width: 72.08333333333333%;
}
.khoda-content-block
{
    display: block;
    margin-bottom: 30px;
}
.khoda-content-block:last-child
{
    margin-bottom: 0;
}
.khoda-content-block .khoda-content-title,.khoda-main-content-panel .khoda-content-title
{
    background-color: #ececec;
    border-bottom: 2px solid #e4e3e2;
    display: block;
    margin-bottom: 20px;
    padding-bottom: 10px;
    padding-bottom: 4px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 12px;
    position: relative;
}
.khoda-content-block .khoda-content-title h2,.khoda-main-content-panel .khoda-content-title h2
{
    font-size: 22px;
    margin-top: 0;
}
.khoda-content-block .khoda-content-title a.right,.khoda-main-content-panel .khoda-content-title a.right
{
    bottom: 13px;
    color: #256dc1;
    font-size: 13px;
    font-weight: 700;
    position: absolute;
    right: 15px;
}
.khoda-content-block .khoda-content-title a.right:hover,.khoda-main-content-panel .khoda-content-title a.right:hover
{
    color: #232323;
}
a.set-this-dotted
{
    overflow: hidden;
    padding-bottom: 4px;
    position: relative;
}
a.set-this-dotted:after
{
    bottom: 0;
    content: '.......................................................................................................';
    display: block;
    font-size: 86%;
    font-weight: 400;
    left: 0;
    letter-spacing: .7px;
    line-height: 100%;
    position: absolute;
    white-space: nowrap;
}
.item-helper-a
{
    display: block;
    padding-top: 15px;
}
.article-grid-default
{
    display: block;
}
.article-grid-default:after
{
    clear: both;
    content: '';
    display: block;
}
.article-grid-default .item
{
    display: block;
    float: left;
    font-size: 14px;
    margin-bottom: 26px;
    margin-left: 2.439024390243902%;
    width: 48.78048780487805%;
}
.article-grid-default .item:first-child
{
    margin-left: 0!important;
}
.article-grid-default .item p
{
    color: #7e7e7e;
    display: block;
    font-size: 14px;
    margin-bottom: 0;
}
.article-grid-default .item h3
{
    color: #919191;
    display: block;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 15px;
}
.article-grid-default .item .item-meta
{
    color: #919191;
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 13px;
}
.article-grid-default .item .item-meta .item-meta-i
{
    color: inherit;
    display: inline-block;
    margin-right: 8px;
}
.article-grid-default .item .item-meta a.item-meta-i:hover
{
    color: #232323;
}
.article-grid-default .item .item-meta .item-meta-i i
{
    padding-right: 4px;
}
.article-grid-default .article-grid-layout-2:after,.article-grid-default .article-grid-layout-3:after,.article-grid-default .article-grid-layout-2,.article-grid-default .article-grid-layout-3
{
    clear: both;
    display: block;
}
.article-grid-default .article-grid-layout-3 .item
{
    width: 31.70731707317073%;
}
.article-grid-default .article-grid-layout-3 .item:nth-child(3n+1),.article-grid-default .article-grid-layout-2 .item:nth-child(2n+1)
{
    clear: both;
    margin-left: 0;
}
.article-grid-default .article-grid-layout-3 .item h3
{
    font-size: 18px;
}
.article-grid-default .article-grid-layout-3 .item .item-meta
{
    font-size: 12px;
    letter-spacing: -.5px;
}
.button-alt
{
    color: #256dc1;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -.4px;
    margin-right: 0;
    padding: 8px 13px;
    position: relative;
    text-transform: uppercase;
}
.button-alt i.ti,.button-alt i.fa,.button-alt i.cg
{
    padding-right: 5px;
}
.button-alt:before
{
    background: #256dc1;
    border: 2px solid #256dc1;
    content: '';
    display: block;
    filter: alpha(opacity=0);
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.button-alt:hover:before
{
    filter: alpha(opacity=10);
    opacity: .1;
}
.button-alt.button-alt-frame:before
{
    background-color: transparent;
    filter: alpha(opacity=10);
    opacity: .1;
}
.button-alt.button-alt-frame:hover:before
{
    filter: alpha(opacity=100);
    opacity: 1;
}
.item-header.item-header-hover
{
    display: block;
    position: relative;
}
.item-header.item-header-hover img
{
    width: 100%;
}
.item-header.item-header-hover>a:before
{
    background: #256dc1;
    content: '';
    display: block;
    filter: alpha(opacity=0);
    height: 100%;
    left: 0;
    moz-transition: all .2s;
    opacity: 0;
    o-transition: all .2s;
    position: absolute;
    top: 0;
    transition: all .2s;
    webkit-transition: all .2s;
    width: 100%;
    z-index: 0;
}
.item-header.item-header-hover:hover>a:before
{
    filter: alpha(opacity=80);
    opacity: .8;
}
.item-header.item-header-hover .item-header-hover-buttons
{
    display: inline-block;
    filter: alpha(opacity=0);
    font-size: 0;
    left: 50%;
    line-height: 100%;
    moz-transition: all .2s;
    ms-transform: translate(-50%,-50%) scale(.4);
    opacity: 0;
    o-transition: all .2s;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%,-50%) scale(.4);
    transition: all .2s;
    vertical-align: middle;
    webkit-transform: translate(-50%,-50%) scale(.4);
    webkit-transition: all .2s;
    z-index: 2;
}
.item-header.item-header-hover:hover .item-header-hover-buttons
{
    filter: alpha(opacity=100);
    ms-transform: translate(-50%,-50%) scale(1);
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
    webkit-transform: translate(-50%,-50%) scale(1);
}
.item-header.item-header-hover .item-header-hover-buttons a
{
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
    position: relative;
    width: 40px;
}
.item-header.item-header-hover .item-header-hover-buttons span:hover a
{
    background-color: #fff;
    color: #337ab7;
}
.item-header.item-header-hover .item-header-hover-buttons a:after
{
    border: 1px solid transparent;
    box-sizing: content-box;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    margin-bottom: -5px;
    margin-left: -6px;
    margin-right: -5px;
    margin-top: -6px;
    padding: 5px;
    position: absolute;
    top: 0;
    width: 100%;
}
.item-header.item-header-hover .item-header-hover-buttons span:after
{
    bottom: 60px;
    color: #fff;
    content: attr(data-hover-text-me);
    display: none;
    filter: alpha(opacity=0);
    font-size: 15px;
    font-weight: 700;
    left: 50%;
    ms-transform: translate(-50%,-50%) scale(1);
    opacity: 0;
    position: absolute;
    transform: translate(-50%,-50%) scale(1);
    webkit-transform: translate(-50%,-50%) scale(1);
    white-space: nowrap;
}
.item-header.item-header-hover .item-header-hover-buttons span:hover:after
{
    animation: animateintext .2s;
    display: block;
    filter: alpha(opacity=100);
    opacity: 1;
    webkit-animation: animateintext .2s;
}
.item-header.item-header-hover.remove .item-header-hover-buttons,.item-header.item-header-hover.remove:hover>a:before
{
    display: none;
}
@-webkit-keyframes animateintext
{
    0%
    {
        bottom: 90px;
        filter: alpha(opacity=0);
        opacity: 0;
    }
    100%
    {
        bottom: 60px;
        filter: alpha(opacity=100);
        opacity: 1;
    }
}
@keyframes animateintext
{
    0%
    {
        bottom: 90px;
        filter: alpha(opacity=0);
        opacity: 0;
    }
    100%
    {
        bottom: 60px;
        filter: alpha(opacity=100);
        opacity: 1;
    }
}
.view-more-items-button
{
    clear: both;
    display: block;
    padding-top: 20px;
    text-align: center;
}
.view-more-items-button .view-more-half-size
{
    background-color: #efefef;
    border-bottom: 1px solid #dcdcdc;
    border-radius: 3px;
    box-shadow: inset 0 120px 100px -100px rgba(255,255,255,.2);
    color: #919191;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.4px;
    padding: 13px;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
    width: 44%;
}
.view-more-items-button .view-more-half-size:hover
{
    background-color: #eaeaea;
}
.view-more-items-button .view-more-half-size:active
{
    background-color: #eaeaea;
    box-shadow: inset 0 120px 100px -100px rgba(0,0,0,.08);
}
.widget .widget-view-more
{
    background-color: #efefef;
    border-bottom: 1px solid #dcdcdc;
    border-radius: 3px;
    box-shadow: inset 0 120px 100px -100px rgba(255,255,255,.2);
    clear: both;
    color: #919191;
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.4px;
    margin-top: 20px;
    padding: 13px;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
.widget .widget-view-more:hover
{
    background-color: #eaeaea;
}
.widget .widget-view-more:active
{
    background-color: #eaeaea;
    box-shadow: inset 0 120px 100px -100px rgba(0,0,0,.08);
}
.article-list-full-width
{
    display: block;
}
.article-list-full-width .item
{
    background: #232323;
    color: #fff;
    display: block;
    margin-bottom: 5px;
    padding: 70px 60px;
    position: relative;
    min-height:300px;
    text-shadow: 0 2px 0 rgba(0,0,0,.4);
}
.article-list-full-width .item:before
{
    background-color: rgba(60,60,60,.6);
    content: '';
    display: block;
    height: 100%;
    left: 0;
    moz-transition: all .2s;
    o-transition: all .2s;
    position: absolute;
    top: 0;
    transition: all .2s;
    webkit-transition: all .2s;
    width: 100%;
    z-index: 1;
}
.article-list-full-width .item:hover:before
{
    background-color: rgba(60,60,60,.8);
}
.article-list-full-width .item strong,.article-list-full-width .item span
{
    display: block;
}
.article-list-full-width .item .item-category
{
    font-size: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}
.article-list-full-width .item .item-title
{
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -.4px;
    margin-bottom: 4px;
    position: relative;
    z-index: 2;
}
.article-list-full-width .item .item-text
{
    font-size: 18px;
    position: relative;
    z-index: 2;
}
.article-list-split-view
{
    display: block;
}
.article-list-split-view:after
{
    clear: both;
    content: '';
    display: block;
}
.article-list-split-view>div
{
    display: block;
    float: left;
    margin-left: 2.941176470588235%;
    width: 48.52941176470588%;
}
.article-list-split-view>div:nth-child(2n+1)
{
    margin-left: 0;
}
.large-item-list .item h3
{
    color: #919191;
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 15px;
}
.large-item-list .item .item-meta
{
    color: #256dc1;
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 13px;
}
.large-item-list .item .item-meta .item-meta-i
{
    color: inherit;
    display: inline-block;
    margin-right: 8px;
}
.large-item-list .item .item-meta .item-meta-i i
{
    padding-right: 4px;
}
.large-item-list .item .item-meta a.item-meta-i:hover
{
    color: #232323;
}
.large-item-list .item p
{
    color: #7e7e7e;
    display: block;
    font-size: 14px;
    margin-bottom: 15px;
}
.large-item-list .item,.small-item-list .item
{
    margin-bottom: 20px;
}
.large-item-list .item:last-child,.small-item-list .item:last-child
{
    margin-bottom: 0;
}
.small-item-list .item:after
{
    clear: both;
    content: '';
    display: block;
}
.small-item-list .item .item-header
{
    display: block;
    float: left;
    width: 110px;
}
.small-item-list .item .item-content
{
    display: block;
    margin-left: 125px;
}
.small-item-list .item h3
{
    color: #919191;
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 5px;
    margin-top: 0;
}
.small-item-list .item p
{
    display: none;
    font-size: 14px;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.article-slider-full-small .item-photo
{
    backface-visibility: hidden;
    color: #fff;
    display: block;
    moz-backface-visibility: hidden;
    moz-transform: translateX(0);
    ms-transform: translateX(0);
    overflow: hidden;
    position: relative;
    text-shadow: 0 1px 1px rgba(0,0,0,.5);
    transform: translateX(0);
    webkit-backface-visibility: hidden;
    webkit-transform: translateX(0);
}
.article-slider-full-small .item-photo:before
{
    background-color: rgba(0,0,0,.2);
    box-shadow: inset 0 -400px 200px -200px rgba(0,0,0,.4);
    content: '';
    display: block;
    height: 100%;
    left: 0;
    moz-transition: all .2s;
    o-transition: all .2s;
    position: absolute;
    top: 0;
    transition: all .2s;
    webkit-transition: all .2s;
    width: 100%;
    z-index: 1;
}
.article-slider-full-small .item-photo:hover:before
{
    background-color: rgba(0,0,0,.5);
}
.article-slider-full-small .item-photo .item-content
{
    bottom: 20px;
    display: block;
    left: 20px;
    padding: 24px;
    position: absolute;
    width: 70%;
    z-index: 3;
}
.article-slider-full-small .item-article-category
{
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}
.article-slider-full-small .item-article-title
{
    display: block;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -.4px;
    margin-bottom: 7px;
}
.article-slider-full-small .item-article-text
{
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 10px;
}
.article-slider-full-small .item-meta
{
    display: block;
    font-size: 13px;
    font-weight: 600;
}
.article-slider-full-small .item-meta>span
{
    display: inline-block;
    margin-right: 8px;
}
.article-slider-full-small .item-meta>span i
{
    display: inline-block;
    padding-right: 5px;
}
.article-slider-full-small .owl-controls .owl-nav .owl-prev
{
    background-color: #256dc1;
    border-color: transparent;
    box-shadow: 0 3px 3px rgba(0,0,0,.2);
    color: #fff;
    margin-right: -20px;
}
.article-slider-full-small .owl-controls .owl-nav .owl-next
{
    background-color: #256dc1;
    border-color: transparent;
    box-shadow: 0 3px 3px rgba(0,0,0,.2);
    color: #fff;
    margin-left: -20px;
}
.article-slider-full-small .owl-controls .owl-nav .owl-prev:hover,.article-slider-full-small .owl-controls .owl-nav .owl-next:hover
{
    background-color: #fff;
    color: #232323;
}
.article-slider-full-small .owl-dots
{
    bottom: 20px;
    cursor: default;
    display: block;
    left: 50%;
    ms-transform: translate(-50%,0);
    position: absolute;
    transform: translate(-50%,0);
    webkit-transform: translate(-50%,0);
}
.article-slider-full-small .owl-dots .owl-dot
{
    cursor: pointer;
    display: inline-block;
}
.article-slider-full-small .owl-dots .owl-dot span
{
    border: 2px solid #fff;
    border-radius: 50%;
    display: block;
    height: 12px;
    line-height: 12px;
    margin: 0 4px;
    width: 12px;
}
.article-slider-full-small .owl-dots .owl-dot.active span,.article-slider-full-small .owl-dots .owl-dot:hover span
{
    background-color: #fff;
}
.khoda-content-title-categories
{
    display: block;
    font-size: 15px;
    padding-bottom: 8px;
}
.khoda-content-title-categories a
{
    display: inline-block;
    font-weight: 700;
    margin-right: 10px;
    padding-right: 10px;
    position: relative;
}
.khoda-content-title-categories a:hover
{
    color: #232323!important;
}
.khoda-content-title-categories a:after
{
    background-color: #ccc;
    content: '';
    display: block;
    height: 80%;
    ms-transform: rotate(20deg);
    position: absolute;
    right: -2px;
    top: 10%;
    transform: rotate(20deg);
    webkit-transform: rotate(20deg);
    width: 1px;
}
.khoda-content-title-categories a:last-child
{
    margin-right: 0;
    padding-right: 0;
}
.khoda-content-title-categories a:last-child:after
{
    display: none;
}
#main-banners
{
    display: block;
    margin-bottom: 20px;
}
#main-banners .item-photo
{
    display: block;
    position: relative;
}
#main-banners .item-photo:before
{
    box-shadow: inset 0 -150px 70px -70px rgba(0,0,0,.1);
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
     moz-transition: all .2s;
    o-transition: all .2s;
    transition: all .2s;
    webkit-transition: all .2s;
}
#main-banners .item-photo:hover:before
{
    background-color: rgba(0,0,0,.3);
}

.khoda-content-block .column6 h2
{
    font-size: 22px;
}
.khoda-content-block
{
    clear: both;
    display: block;
}
.khoda-content-block .do-space
{
    background: #ebebeb;
    display: block;
    padding: 20px 0;
    text-align: center;
}
.khoda-content-block .do-space strong
{
    color: #999;
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 100%;
    padding-top: 14px;
}
.khoda-main-article-block
{
    color: #171717;
    display: block;
    font-size: 15px;
}
.khoda-main-article-block p
{
    color: inherit;
}
.khoda-main-article-block h1,.khoda-main-article-block h2,.khoda-main-article-block h3,.khoda-main-article-block h4,.khoda-main-article-block h5,.khoda-main-article-block h6
{
    margin-bottom: 20px;
}
p.khoda-main-article-intro
{
    font-weight: 600;
    letter-spacing: -.3px;
}
.khoda-main-article-meta
{
    color: #256dc1;
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.4px;
    margin-bottom: 20px;
}
.khoda-main-article-meta .item-meta-i
{
    color: inherit;
    display: inline-block;
    margin-right: 12px;
}
.khoda-main-article-meta .item-meta-i a
{
    color: inherit!important;
}
.khoda-main-article-meta .item-meta-i i
{
    display: inline-block;
    padding-right: 6px;
}
.ot-menu-will-follow .is-now-following .main-menu-placeholder
{
    background: inherit;
    box-shadow: 0 3px 5px rgba(0,0,0,.1);
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}
.ot-menu-will-follow .boxed.active .is-now-following .main-menu-placeholder
{
    max-width: 100%;
    width: 1230px;
}
#main-menu .dat-menu-button
{
    display: none;
    font-size: 14px;
    font-weight: 700;
    padding: 15px 0;
    text-align: center;
}
#main-menu .dat-menu-button i
{
    padding-right: 8px;
}
.comment-list
{
    display: block;
    margin-bottom: 20px;
}
#comments
{
    border-bottom: 1px solid #e7e7e7;
    display: block;
    padding-bottom: 20px;
}
#comments li
{
    border-top: 1px solid #e7e7e7;
    display: block;
    margin-top: 20px;
    padding-top: 20px;
}
#comments li:after
{
    clear: both;
    content: '';
    display: block;
}
#comments li li
{
    padding-left: 80px;
}
#comments>li:first-child
{
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}
#comments .comment-block
{
    display: block;
}
#comments .image-avatar
{
    display: block;
    float: left;
    width: 60px;
}
#comments .image-avatar img
{
    width: 100%;
}
#comments .comment-text
{
    display: block;
    margin-left: 80px;
}
#comments .user-nick
{
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.4px;
    margin-bottom: 8px;
}
#comments .user-nick a
{
    color: #232323;
}
#comments .user-nick a:hover
{
    color: #256dc1;
}
#comments .user-nick .user-label
{
    background-color: #256dc1;
    color: #fff;
    display: inline-block;
    font-size: 11px;
    margin-bottom: 3px;
    margin-left: 9px;
    padding: 2px 8px;
}
#comments p
{
    display: block;
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 10px;
}
#comments .shortcode-content
{
    display: block;
    font-size: 14px;
    line-height: 150%;
    padding-bottom: 5px;
}
#comments .shortcode-content:last-child
{
    margin-bottom: 0;
}
#comments .reply-button
{
    color: #256dc1;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 100%;
    padding: 7px 12px;
    position: relative;
}
#comments .reply-button i
{
    padding-left: 6px;
}
#comments .reply-button:before
{
    background: #256dc1;
    content: '';
    display: block;
    filter: alpha(opacity=8);
    height: 100%;
    left: 0;
    opacity: .08;
    position: absolute;
    top: 0;
    width: 100%;
}
#comments .reply-button:hover
{
    color: #232323;
}
#comments .reply-button:hover:before
{
    background-color: #232323;
}
#comments .time-stamp
{
    color: #aeaeae;
    font-size: 13px;
}
.comment-form
{
    margin-left: auto;
    margin-right: auto;
    width: 500px;
}
.comment-form p
{
    margin-bottom: 10px;
}
.comment-info
{
    display: block;
    font-size: 13px;
    margin-bottom: 20px;
}
.comment-info strong
{
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.big-error-message
{
    color: #8c8c8c;
    display: block;
    padding: 50px 0;
    text-align: center;
}
.big-error-message h3
{
    display: block;
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 0;
    padding-top: 50px;
}
.big-error-message strong
{
    display: block;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -.4px;
    margin-bottom: 30px;
}
.big-error-message p
{
    display: block;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
}
.big-error-message p a
{
    font-weight: 700;
}
.khoda-pagination
{
    clear: both;
    cursor: default;
    display: block;
    padding-top: 20px;
    text-align: center;
}
.khoda-pagination .page-numbers
{
    background-color: #efefef;
    border-bottom: 1px solid #dcdcdc;
    border-radius: 3px;
    box-shadow: inset 0 120px 100px -100px rgba(255,255,255,.2);
    color: #919191;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.4px;
    padding: 10px 16px;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
.khoda-pagination span.page-numbers
{
    background-color: #256dc1;
    color: #fff;
    text-shadow: none;
}
.khoda-pagination a.page-numbers:hover
{
    background-color: #eaeaea;
}
.khoda-pagination a.page-numbers:active
{
    background-color: #eaeaea;
    box-shadow: inset 0 120px 100px -100px rgba(0,0,0,.08);
}
.khoda-pagination .page-numbers.prev i.fa
{
    display: inline-block;
    padding-right: 8px;
}
.khoda-pagination .page-numbers.next i.fa
{
    display: inline-block;
    padding-left: 8px;
}
.khoda-pagination .page-numbers.prev
{
    margin-right: 10px;
}
.khoda-pagination .page-numbers.next
{
    margin-left: 10px;
}
.main-archive-block-c
{
    display: block;
}
.main-archive-block-c:after
{
    clear: both;
    content: '';
    display: block;
}
.main-archive-block-c .item-block
{
    display: block;
    float: left;
    margin-left: 2%;
    width: 23.5%;
}
.main-archive-block-c.archive-split-4 .item-block
{
    width: 23.5%;
}
.main-archive-block-c.archive-split-4 .item-block:nth-child(4n+1)
{
    clear: both;
    margin-left: 0;
}
.main-archive-block-c.archive-split-4 .item-block:nth-child(n+5)
{
    margin-top: 25px;
}
.main-archive-block-c .item-block>h3
{
    display: block;
    margin-bottom: 20px;
}
.main-archive-block-c .view-more-items-button
{
    padding-top: 20px;
}
.main-archive-block-c .view-more-items-button .view-more-half-size
{
    width: 100%;
}
.main-archive-block-c .item-content h4
{
    color: #919191;
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 124%;
    margin-bottom: 15px;
    margin-top: 15px;
}
.main-archive-block-c .item-content .item-meta
{
    color: #919191;
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -.5px;
    margin-bottom: 13px;
}
.main-archive-block-c .item-content .item-meta-i
{
    color: inherit;
    display: inline-block;
    margin-right: 8px;
}
.main-archive-block-c .item-content .item-meta-i i
{
    padding-right: 4px;
}
.main-archive-block-c .item-content a.item-meta-i:hover
{
    color: #232323;
}
.main-archive-block-c .item-content p
{
    color: #7e7e7e;
    display: block;
    font-size: 14px;
    margin-bottom: 0;
}
.main-archive-block-c .item.item-small
{
    border-top: 1px solid #e4e3e2;
    display: block;
    margin-top: 18px;
    padding-top: 15px;
}
.main-archive-block-c .item.item-small h4
{
    font-size: 15px;
    line-height: 120%;
    margin-bottom: 0;
    padding-left: 16px;
    position: relative;
}
.main-archive-block-c .item.item-small h4:before
{
    content: '\f0da';
    display: block;
    font-family: FontAwesome;
    font-size: 14px;
    left: 0;
    position: absolute;
    top: 1px;
}
.main-archive-block-c.archive-split-3 .item-block
{
    width: 32%;
}
.main-archive-block-c.archive-split-3 .item-block:nth-child(3n+1)
{
    clear: both;
    margin-left: 0;
}
.main-archive-block-c.archive-split-3 .item-block:nth-child(n+4)
{
    margin-top: 25px;
}
.main-archive-block-c.archive-split-2 .item-block
{
    width: 49%;
}
.main-archive-block-c.archive-split-2 .item-block:nth-child(2n+1)
{
    clear: both;
    margin-left: 0;
}
.main-archive-block-c.archive-split-2 .item-block:nth-child(n+3)
{
    margin-top: 25px;
}
.main-archive-block-c.archive-split-1 .item-block
{
    float: none;
    margin-left: 0;
    width: 100%;
}
.main-archive-block-c.archive-split-1 .item-block:nth-child(n+1)
{
    margin-top: 25px;
}
.article-blog-default
{
    display: block;
}
.article-blog-default .item
{
    background-color: #fff;
    padding: 30px;
    border: 0;
/*    border-bottom: 1px solid #e4e3e2;*/
    display: block;
    margin-bottom: 25px;
    padding-bottom: 25px;
}
.article-blog-default .item:last-child
{
    border-bottom: 0;
    margin-bottom: 0;
/*    padding-bottom: 0;*/
}
.article-blog-default .item:after
{
    clear: both;
    content: '';
    display: block;
}
.article-blog-default .item-header
{
    display: block;
    float: left;
    width: 38%;
}

.article-blog-default .item-content
{
    display: block;
}
.article-blog-default .item-header + .item-content { 
       margin-left: 41%;
}
.article-blog-default .item-content h3
{
    font-size: 20px;
    letter-spacing: -.4px;
    margin-bottom: 15px;
}
.article-blog-default .item-content .item-meta
{
    color: #919191;
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}
.article-blog-default .item-content .item-meta .item-meta-i
{
    color: inherit;
    display: inline-block;
    margin-right: 8px;
}
.article-blog-default .item-content .item-meta .item-meta-i i
{
    padding-right: 4px;
}
.article-blog-default .item-content .item-meta a.item-meta-i:hover
{
    color: #232323;
}
.article-blog-default .item-content p
{
    display: block;
    font-size: 15px;
    margin-bottom: 0;
}
.comments-big-message
{
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 0;
    position: relative;
    width: 50%;
}
.comments-big-message i.fa
{
    display: block;
    float: left;
    font-size: 60px;
    line-height: 100%;
}
.comments-big-message strong
{
    color: #575757;
    display: block;
    font-size: 24px;
    margin-bottom: 4px;
    margin-left: 90px;
}
.comments-big-message p
{
    display: block;
    font-size: 14px;
    margin-bottom: 0;
    margin-left: 90px;
}
.dat-menu-setup
{
    background-image: url(../images/photo-3.jpg);
}
.photo-gallery-blocks
{
    display: block;
}
.photo-gallery-blocks:after
{
    clear: both;
    content: '';
    display: block;
}
.photo-gallery-blocks .item
{
    display: block;
    float: left;
    margin-left: 2%;
    width: 23.5%;
}
.photo-gallery-blocks.pgalley-split-4 .item
{
    width: 23.5%;
}
.photo-gallery-blocks.pgalley-split-4 .item:nth-child(4n+1)
{
    clear: both;
    margin-left: 0;
}
.photo-gallery-blocks.pgalley-split-4 .item:nth-child(n+5)
{
    margin-top: 25px;
}
.photo-gallery-blocks.pgalley-split-3 .item
{
    width: 32%;
}
.photo-gallery-blocks.pgalley-split-3 .item:nth-child(3n+1)
{
    clear: both;
    margin-left: 0;
}
.photo-gallery-blocks.pgalley-split-3 .item:nth-child(n+4)
{
    margin-top: 25px;
}
.photo-gallery-blocks.pgalley-split-2 .item
{
    width: 49%;
}
.photo-gallery-blocks.pgalley-split-2 .item:nth-child(2n+1)
{
    clear: both;
    margin-left: 0;
}
.photo-gallery-blocks.pgalley-split-2 .item:nth-child(n+3)
{
    margin-top: 25px;
}
.photo-gallery-blocks.pgalley-split-1 .item
{
    float: none;
    margin-left: 0;
    width: 100%;
}
.photo-gallery-blocks.pgalley-split-1 .item:nth-child(n+1)
{
    margin-top: 25px;
}
.photo-gallery-blocks .item-header
{
    display: block;
    margin-bottom: 15px;
}
.photo-gallery-blocks .item-content h3
{
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}
.photo-gallery-blocks .item-content .item-meta
{
    color: #919191;
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}
.photo-gallery-blocks .item-content p
{
    color: #7e7e7e;
    display: block;
    font-size: 13px;
    margin-bottom: 0;
}
.photo-gallery-blocks .item-content .item-meta-i
{
    color: inherit;
    display: inline-block;
    margin-right: 8px;
}
.photo-gallery-blocks .item-content a.item-meta-i:hover
{
    color: #232323;
}
.photo-gallery-blocks .item-content .item-meta-i i
{
    padding-right: 4px;
}
.photo-gallery-blocks .item:hover
{
    position: relative;
    z-index: 3;
}
.photo-gallery-blocks .owl-nav .owl-next,.photo-gallery-blocks .owl-nav .owl-prev
{
    background-color: #256dc1;
    border-color: transparent;
    box-shadow: 0 3px 3px rgba(0,0,0,.2);
    color: #fff;
    margin-left: -20px;
}
.photo-gallery-blocks .owl-nav .owl-next:hover,.photo-gallery-blocks .owl-nav .owl-prev:hover
{
    background-color: #fff;
    color: #232323;
}
.photo-gallery-blocks .owl-nav .owl-prev
{
    margin-right: -20px;
}
.photo-gallery-blocks .owl-dots
{
    bottom: 14px;
    cursor: default;
    display: block;
    left: 50%;
    ms-transform: translate(-50%,0);
    position: absolute;
    transform: translate(-50%,0);
    webkit-transform: translate(-50%,0);
}
.photo-gallery-blocks .owl-dots .owl-dot
{
    cursor: pointer;
    display: inline-block;
}
.photo-gallery-blocks .owl-dots .owl-dot span
{
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 3px 1px rgba(0,0,0,.2);
    display: block;
    height: 12px;
    line-height: 12px;
    margin: 0 4px;
    width: 12px;
}
.photo-gallery-blocks .owl-dots .owl-dot.active span,.photo-gallery-blocks .owl-dots .owl-dot:hover span
{
    background-color: #fff;
}
.photo-gallery-blocks .khoda-pagination
{
    padding-top: 35px;
}
.photo-gallery-full-block
{
    background-color: #242526;
    display: block;
}
.photo-gallery-full-block>.wrapper
{
    line-height: 400px;
    min-height: 400px;
    text-align: center;
}
.photo-gallery-full-controls button
{
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: inset 120px 0 70px -70px rgba(0,0,0,.5);
    box-shadow: none;
    color: #fff;
    display: block;
    filter: alpha(opacity=0);
    font-size: 30px;
    height: 100%;
    left: 0;
    line-height: 100%;
    moz-transition: all .2s;
    opacity: 0;
    o-transition: all .2s;
    padding: 0;
    position: absolute;
    text-align: left;
    text-shadow: 0 0 3px #000;
    top: 0;
    transition: all .2s;
    webkit-transition: all .2s;
    width: 100px;
    z-index: 2;
}
.photo-gallery-full-controls button.control-right
{
    box-shadow: inset -120px 0 70px -70px rgba(0,0,0,.5);
    left: auto;
    right: 0;
    text-align: right;
}
.photo-gallery-full-block:hover .photo-gallery-full-controls button
{
    filter: alpha(opacity=50);
    opacity: .5;
    padding: 0 36px;
}
.photo-gallery-full-block .photo-gallery-full-controls button:hover
{
    filter: alpha(opacity=100);
    opacity: 1;
}
.photo-gallery-thumbs
{
    background-color: #37383a;
    display: block;
    overflow: hidden;
    position: relative;
    text-align: left;
}
.photo-gallery-nav-left:active,.photo-gallery-nav-left:focus,.photo-gallery-nav-left
{
    background-color: #256dc1;
    border: 0;
    border-radius: 0;
    bottom: 0;
    box-shadow: none;
    color: #fff;
    display: block;
    left: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 45px;
}
.photo-gallery-nav-right,.photo-gallery-nav-left
{
    height: 110px;
    line-height: 110px;
}
.photo-gallery-nav-right:hover,.photo-gallery-nav-left:hover
{
    background-color: #232323;
}
.photo-gallery-nav-right:active,.photo-gallery-nav-right:focus,.photo-gallery-nav-right
{
    background-color: #256dc1;
    border: 0;
    border-radius: 0;
    bottom: 0;
    box-shadow: none;
    color: #fff;
    display: block;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
}
.photo-gallery-thumbs-inner
{
    display: block;
    font-size: 0;
    margin: 0 58px;
    overflow: hidden;
    padding: 16px 0;
    position: relative;
    white-space: nowrap;
}
.photo-gallery-thumbs-inner .item
{
    border: 3px solid transparent;
    display: inline-block;
    filter: alpha(opacity=40);
    height: 78px;
    margin-left: -3px;
    margin-right: 11px;
    opacity: .4;
    padding: 1px;
    vertical-align: middle;
    width: 78px;
}
.photo-gallery-thumbs-inner .item:first-child
{
    margin-left: 0;
}
.photo-gallery-thumbs-inner .item:hover
{
    filter: alpha(opacity=100);
    opacity: 1;
}
.photo-gallery-thumbs-inner .item.active
{
    border: 3px solid #256dc1;
    filter: alpha(opacity=100);
    opacity: 1;
}
.photo-gallery-thumbs-inner:before
{
    box-shadow: -5px 0 60px 40px transparent;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    right: 100%;
    top: 0;
    width: 100px;
    z-index: 2;
}
.photo-gallery-thumbs-inner:after
{
    box-shadow: 5px 0 60px 40px #37383a;
    content: '';
    display: block;
    height: 100%;
    left: 100%;
    position: absolute;
    top: 0;
    width: 100px;
    z-index: 2;
}
.photo-gallery-thumbs-inner:after,.photo-gallery-thumbs-inner:before
{
    moz-transition: all .4s;
    o-transition: all .4s;
    transition: all .4s;
    webkit-transition: all .4s;
}
.photo-gallery-thumbs-inner.is-last:after
{
    box-shadow: -5px 0 60px 40px transparent;
}
.photo-gallery-thumbs-inner:before
{
    box-shadow: -5px 0 60px 40px transparent;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    right: 100%;
    top: 0;
    width: 100px;
    z-index: 2;
}
.photo-gallery-thumbs-inner.not-first:before
{
    box-shadow: -5px 0 60px 40px #37383a;
}
.photo-gallery-context-c
{
    background: #f1f1f1;
    margin-bottom: 20px;
    margin-top: -20px;
    padding: 30px 50px;
}
.sidebar
{
    display: block;
    float: left;
    margin-left: 2.916666666666667%;
}
.sidebar:first-child,.sidebar.left
{
    margin-left: 0;
}
.sidebar.khoda-sidebar-large
{
    color: #7e7e7e;
    font-size: 14px;
    width: 25%;
}
.sidebar.khoda-sidebar-small
{
    width: 25.5833%;
}
.sidebar .widget
{
    border-bottom: 1px solid #e0e0e0;
    display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.sidebar .widget:last-child
{
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
#footer-widgets .widget
{
    margin-bottom: 28px;
}
#footer-widgets .widget:last-child
{
    margin-bottom: 0;
}
.widget>h3
{
    border-bottom: 2px solid rgba(0,0,0,.1);
    color: #232323;
    display: block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.4px;
    margin-bottom: 17px;
    margin-top: 0;
    padding-bottom: 15px;
}
#footer .widget>h3
{
    border-bottom: 2px solid rgba(255,255,255,.1);
    color: #fff;
}
.widget-instagram-photos
{
    display: block;
}
.widget-instagram-photos .item
{
    display: block;
    float: left;
    margin-bottom: 20px;
    margin-left: 6%;
    width: 47%;
}
.widget-instagram-photos .item:nth-child(2n+1)
{
    margin-left: 0;
}
.widget-instagram-photos .item .item-header
{
    display: block;
    margin-bottom: 13px;
}
.widget-instagram-photos .item .item-header a
{
    display: block;
}
.widget-instagram-photos .item .item-content
{
    display: block;
}
.widget-instagram-photos .item .item-content h4
{
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -.5px;
    line-height: 130%;
    margin-bottom: 6px;
    margin-top: 0;
}
.widget-instagram-photos .item .item-content .insta-like-count
{
    color: #ec6c7e;
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}
.widget-instagram-photos .item .item-content .insta-like-count i.fa
{
    padding-right: 6px;
}
.widget-instagram-photos .item .item-content .item-meta
{
    color: #919191;
    font-size: 11px;
    font-weight: 700;
}
.widget-instagram-photos .item .item-content .item-meta a
{
    color: inherit!important;
    display: inline-block;
    letter-spacing: -.5px;
    margin-right: 8px;
}
.widget-instagram-photos .item .item-content .item-meta a:hover
{
    color: #7b7b7b;
}
.widget-instagram-photos .item .item-content .item-meta a i.po,.widget-instagram-photos .item .item-content .item-meta a i.fa
{
    padding-right: 4px;
}
.khoda-sidebar-large .widget>h3,.khoda-sidebar-small .widget>h3
{
    background-color: #ececec;
    border-bottom-width: 2px;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 12px;
    padding-top: 5px;
}
.khoda-sidebar-small .widget
{
    display: block;
    font-size: 13px;
    margin-bottom: 22px;
}
.khoda-sidebar-small .widget:last-child
{
    margin-bottom: 0;
}
.w-comment-list .item,.w-article-list .item,.w-article-list-num .item
{
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
.widget .w-comment-list .item:last-child,.widget .w-article-list .item:last-child,.widget .w-article-list-num .item:last-child
{
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.w-article-list-num .item-num
{
    color: #256dc1;
    filter: alhpa(opacity=12);
    font-size: 70px;
    font-weight: 700;
    letter-spacing: -.4px;
    line-height: 100%;
    opacity: .12;
    position: absolute;
    right: 0;
    top: 16px;
    webkit-filter: alhpa(opacity=12);
    z-index: 0;
}
.w-article-list-num .item-content
{
    position: relative;
    z-index: 1;
}
.w-article-list-num .item-categories
{
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}
.w-article-list-num .item-categories a
{
    display: inline-block;
    margin-right: 5px;
}
.w-article-list-num h4
{
    font-size: 14px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 8px;
    margin-top: 0;
}
.w-article-list-num .item-meta
{
    color: #7e7e7e;
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}
.w-article-list-num .item-meta a
{
    color: #7e7e7e;
}
.w-article-list-num .item-meta a i
{
    padding-right: 3px;
}
.w-article-list-num p
{
    color: #7e7e7e;
    font-size: 13px;
    margin-bottom: 0;
}
.w-article-list .item-header
{
    display: block;
    margin-bottom: 10px;
}
.w-article-list .item-categories
{
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}
.w-article-list .item-categories a
{
    display: inline-block;
    margin-right: 5px;
}
.w-article-list h4
{
    font-size: 14px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 0;
    margin-top: 0;
}
.khoda-sidebar-small .widget-instagram-photos .item
{
    clear: both;
    float: none;
    margin: 0 0 20px;
    width: 100%;
}
.khoda-sidebar-small .widget-instagram-photos .item img
{
    width: 100%;
}
.w-comment-list .item-header
{
    display: block;
    margin-bottom: 15px;
}
.w-comment-list .item-header:after
{
    clear: both;
    content: '';
    display: block;
}
.w-comment-list .item-header img
{
    border-radius: 50%;
    float: left;
    height: 30px;
    width: 30px;
}
.w-comment-list .item-header-content
{
    display: block;
    margin-left: 44px;
}
.w-comment-list .item-header-content h4
{
    font-size: 12px;
    margin: 0;
}
.w-comment-list .item-header-content strong,.w-comment-list .item-header-content span
{
    display: block;
    font-size: 11px;
    padding-top: 3px;
}
.w-comment-list p
{
    color: #7e7e7e;
    font-size: 13px;
    margin-bottom: 10px;
}
.w-comment-list a.read-more-sm-link
{
    color: #256dc1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -.5px;
    margin-bottom: 0;
}
.w-comment-list a.read-more-sm-link i
{
    padding-right: 6px;
}
.w-comment-list a.read-more-sm-link:hover
{
    color: #232323;
}
.widget .do-space
{
    display: block;
}
.widget .tagcloud
{
    cursor: default;
    display: block;
}
.widget .tagcloud a
{
    background-color: #efefef;
    border-bottom: 1px solid #dcdcdc;
    border-radius: 2px;
    border-radius: 3px;
    box-shadow: inset 0 120px 100px -100px rgba(255,255,255,.2);
    color: #919191;
    display: inline-block;
    font-size: 12px!important;
    margin-bottom: 6px;
    margin-right: 5px;
    padding: 7px 10px;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
.widget .tagcloud a:hover
{
    background-color: #256dc1;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0,0,0,.2);
}
#main-menu .widget .tagcloud a
{
    padding: 5px 9px;
}
#main-menu .widget .tagcloud a:hover
{
    color: #fff;
}
.alert-message
{
    font-size: 14px;
    margin-bottom: 15px;
    padding: 13px 16px;
    position: relative;
}
.alert-message:before
{
    background-color: #eca93f;
    content: '';
    display: block;
    filter: alpha(opacity=10);
    height: 100%;
    left: 0;
    opacity: .1;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}
.alert-message strong
{
    color: #eca93f;
    position: relative;
    z-index: 2;
}
.alert-message.alert-red:before
{
    background-color: #e83b3b;
}
.alert-message.alert-red strong
{
    color: #e83b3b;
}
.alert-message.alert-green:before
{
    background-color: #70cd37;
}
.alert-message.alert-green strong
{
    color: #70cd37;
}
.widget-subscribe
{
    display: block;
}
.widget-subscribe form
{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 86%;
}
.label-input
{
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-shadow: 0 2px 0 rgba(0,0,0,.03);
    cursor: text;
    display: block;
    margin-bottom: 8px;
    padding: 10px 12px;
}
.label-input span
{
    color: #c8c8c8;
    display: block;
    font-size: 11px;
    font-weight: 400;
    padding-bottom: 3px;
}
.label-input input
{
    background-color: transparent;
    border: 0;
    color: #9d9d9d;
    display: block;
    font-size: 13px;
    font-weight: 700;
    width: 100%;
}
.label-input textarea
{
    background-color: transparent;
    border: 0;
    color: #9d9d9d;
    display: block;
    font-size: 13px;
    font-weight: 700;
    height: 80px;
    resize: vertical;
    width: 100%;
}
a.button,.button
{
    background-color: #337ab7;
    border: 0;
    border-bottom: 1px solid #dcdcdc;
    border-radius: 3px;
    box-shadow: inset 0 120px 100px -100px rgba(255,255,255,.2),inset 0 -1px 0 rgba(0,0,0,.3);
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.4px;
    padding: 12px 18px;
    text-shadow: 0 -1px 0 rgba(0,0,0,.4);
}
.button:hover
{
    box-shadow: inset 0 120px 100px -100px rgba(255,255,255,.2),inset 0 -1px 0 rgba(0,0,0,.3),inset 0 0 0 100px rgba(255,255,255,.15);
}
.button:active
{
    box-shadow: inset 0 120px 100px -100px rgba(0,0,0,.08);
}
.widget-subscribe .button
{
    width: 44%;
}
.item-stars
{
    display: inline-block;
    font-family: FontAwesome;
    letter-spacing: 2px;
    margin-bottom: 4px;
    margin-right: 5px;
    position: relative;
}
.item-stars:before
{
    color: #d1d1d1;
    content: '\f005\f005\f005\f005\f005';
    display: block;
}
.item-stars .stars-inner
{
    display: block;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}
.item-stars .stars-inner:before
{
    color: #fd9d20;
    content: '\f005\f005\f005\f005\f005';
    display: block;
}
.w-review-articles .item
{
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.w-review-articles .item:last-child
{
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.w-review-articles .item:after
{
    clear: both;
    content: '';
    display: block;
}
.w-review-articles .item-header
{
    display: block;
    float: left;
    margin-bottom: 15px;
    width: 75px;
}
.w-review-articles .item-content
{
    display: block;
    margin-left: 90px;
}
.w-review-articles .item-content h4
{
    font-size: 14px;
    line-height: 126%;
    margin-bottom: 5px;
}
.w-review-articles .item-content .item-meta
{
    line-height: 20px;
    vertical-align: bottom;
}
.w-review-articles .item-content .item-stars
{
    margin-bottom: 0;
}
.w-review-articles .item-content .item-meta-inner
{
    display: block;
    font-size: 12px;
    font-weight: 700;
    padding-top: 6px;
}
.w-review-articles .item-content .item-meta-i
{
    display: inline-block;
    margin-right: 7px;
}
.w-review-articles .item-content .item-meta-i i
{
    padding-right: 3px;
}
.w-review-articles .item.item-large .item-header
{
    float: none;
    width: 100%;
}
.w-review-articles .item.item-large .item-content h4
{
    font-size: 16px;
    margin-bottom: 10px;
}
.w-review-articles .item.item-large .item-content h4:last-child
{
    margin-bottom: 0;
}
.w-review-articles .item.item-large .item-content
{
    display: block;
    margin-left: 0;
}
.w-review-articles .item.item-large .item-content .item-meta-inner
{
    display: inline-block;
    padding-top: 0;
}
.w-twitter-feed
{
    display: block;
}
.w-twitter-feed .item
{
    border-bottom: 1px solid #e0e0e0;
    display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.w-twitter-feed .item:after
{
    clear: both;
    content: '';
    display: block;
}
.w-twitter-feed .item:last-child
{
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.w-twitter-feed .item-photo
{
    display: block;
    float: left;
    width: 50px;
}
.w-twitter-feed .item-content
{
    display: block;
    margin-left: 65px;
}
.w-twitter-feed h4
{
    font-size: 16px;
    margin-bottom: 8px;
}
.w-twitter-feed .twitter-i-link
{
    display: block;
    margin-bottom: 8px;
    margin-top: -8px;
}
.w-twitter-feed p
{
    display: block;
    margin-bottom: 10px;
}
.w-twitter-feed .item-meta
{
    display: block;
    font-size: 13px;
    font-weight: 700;
}
.w-twitter-feed .item-meta .item-meta-i
{
    display: inline-block;
    margin-right: 7px;
}
.w-twitter-feed .item-meta .item-meta-i i
{
    padding-right: 4px;
}
.w-gallery-slider .item
{
    border-bottom: 1px solid #ccc;
    display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.w-gallery-slider .item:last-child
{
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.w-gallery-slider .item-header
{
    display: block;
    margin-bottom: 15px;
}
.w-gallery-slider .item-meta
{
    color: #919191;
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}
.w-gallery-slider h4
{
    font-size: 18px;
    line-height: 120%;
}
.w-gallery-slider p
{
    margin-bottom: 0;
}
.w-gallery-slider .item-meta .item-meta-i
{
    display: inline-block;
    margin-right: 10px;
}
.w-gallery-slider .item-meta .item-meta-i i
{
    padding-right: 4px;
}
.w-gallery-slider .item-meta a.item-meta-i
{
    color: inherit;
}
.w-gallery-slider .item-meta a.item-meta-i:hover
{
    color: #232323;
}
.w-gallery-slider .owl-controls .owl-nav .owl-next
{
    background-color: #256dc1;
    border-color: transparent;
    box-shadow: 0 3px 3px rgba(0,0,0,.2);
    color: #fff;
    margin-left: -20px;
}
.w-gallery-slider .owl-controls .owl-nav .owl-prev
{
    background-color: #256dc1;
    border-color: transparent;
    box-shadow: 0 3px 3px rgba(0,0,0,.2);
    color: #fff;
    margin-right: -20px;
}
.w-gallery-slider .owl-controls .owl-nav .owl-prev:hover,.w-gallery-slider .owl-controls .owl-nav .owl-next:hover
{
    background-color: #fff;
    color: #232323;
}
.w-gallery-slider .owl-dots
{
    bottom: 14px;
    cursor: default;
    display: block;
    left: 50%;
    ms-transform: translate(-50%,0);
    position: absolute;
    transform: translate(-50%,0);
    webkit-transform: translate(-50%,0);
}
.w-gallery-slider .owl-dots .owl-dot
{
    cursor: pointer;
    display: inline-block;
}
.w-gallery-slider .owl-dots .owl-dot span
{
    border: 2px solid #fff;
    border-radius: 50%;
    display: block;
    height: 12px;
    line-height: 12px;
    margin: 0 4px;
    width: 12px;
}
.w-gallery-slider .owl-dots .owl-dot.active span,.article-slider-full-small .owl-dots .owl-dot:hover span
{
    background-color: #fff;
}
.w-flickr-feed
{
    display: block;
}
.w-flickr-feed:after
{
    clear: both;
    content: '';
    display: block;
}
.w-article-list.w-article-list-small .item-header
{
    display: block;
    float: left;
    width: 40px;
}
.w-article-list.w-article-list-small .item-content
{
    display: block;
    margin-left: 55px;
}
.w-article-list.w-article-list-small .item:after
{
    clear: both;
    content: '';
    display: block;
}
.w-article-list.w-article-list-small .item .item-meta
{
    color: #919191;
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-top: 6px;
}
.w-article-list.w-article-list-small .item .item-meta .item-meta-i
{
    color: inherit;
    display: inline-block;
    margin-right: 8px;
}
.w-article-list.w-article-list-small .item .item-meta .item-meta-i i
{
    padding-right: 4px;
}
#footer .w-article-list.w-article-list-small .item
{
    border-color: rgba(255,255,255,.1);
}
#footer .item h2 a:first-child,#footer .item h3 a:first-child,#footer .item h4 a:first-child,#footer .item h5 a:first-child
{
    color: #e0e0e0;
}
#footer #footer-widgets a:hover
{
    color: #fff;
}
#footer .widget .widget-view-more
{
    background-color: rgba(255,255,255,.1);
    border: 0;
    box-shadow: none;
    font-size: 13px;
    padding: 10px 0;
    text-shadow: none;
}
#footer .widget .widget-view-more:hover
{
    background-color: rgba(255,255,255,.14);
}
#footer .widget .widget-view-more:active
{
    background-color: rgba(255,255,255,.05);
}
.w-flickr-feed .item
{
    display: block;
    float: left;
    margin-left: 3.5%;
    width: 31%;
}
.w-flickr-feed .item:nth-child(3n+1)
{
    clear: both;
    margin-left: 0;
}
.w-flickr-feed .item:nth-child(n+4)
{
    margin-top: 10px;
}
.w-flickr-feed:after
{
    clear: both;
    content: '';
    display: block;
}
.widget>ul
{
    display: block;
}
.widget>ul.menu li
{
    color: rgba(255,255,255,.3);
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
}
.widget>ul.menu li:before
{
    color: #ccc;
    content: '\f0da';
    display: inline-block;
    font-family: FontAwesome;
    padding-right: 10px;
}
.widget>ul.menu li a
{
    color: #ccc;
    display: inline-block;
    padding-right: 5px;
}
#main-menu .widget .widget-view-more
{
    padding: 8px 0;
}
.widget .social-widget
{
    display: block;
}
.widget .social-squares
{
    font-size: 0;
    margin-bottom: 15px;
}
.widget .social-squares:last-child
{
    margin-bottom: 0;
}
.widget .social-widget a
{
    background-color: #ececec;
    display: inline-block;
    font-size: 14px;
    margin-left: 2%;
    text-align: center;
    width: 18.4%;
}
.widget .social-widget a i
{
    moz-transition: all .2s;
    o-transition: all .2s;
    transition: all .2s;
    webkit-transition: all .2s;
}
.widget .social-widget a:hover i
{
    color: #fff;
}
.widget .social-widget a:nth-child(5n+1)
{
    margin-left: 0;
}
.widget .social-widget a i.fa
{
    display: block;
    line-height: 36px;
}
.widget .social-widget a span
{
    background-color: #e4e4e4;
    color: #818181;
    display: block;
    font-size: 12px;
    line-height: 22px;
}
.hover-color-facebook
{
    color: #3b5998;
}
.hover-color-facebook.soc-bef:before,.hover-color-facebook:hover
{
    background-color: #3b5998!important;
    color: #fff;
}
.hover-color-twitter
{
    color: #00aced;
}
.hover-color-twitter.soc-bef:before,.hover-color-twitter:hover
{
    background-color: #00aced!important;
    color: #fff;
}
.hover-color-google-plus
{
    color: #dd4b39;
}
.hover-color-google-plus.soc-bef:before,.hover-color-google-plus:hover
{
    background-color: #dd4b39!important;
    color: #fff;
}
.hover-color-linkedin
{
    color: #007bb6;
}
.hover-color-linkedin.soc-bef:before,.hover-color-linkedin:hover
{
    background-color: #007bb6!important;
    color: #fff;
}
.hover-color-pinterest
{
    color: #cb2027;
}
.hover-color-pinterest.soc-bef:before,.hover-color-pinterest:hover
{
    background-color: #cb2027!important;
    color: #fff;
}
.hover-color-rss
{
    color: #ffaa4f;
}
.hover-color-rss.soc-bef:before,.hover-color-rss:hover
{
    background-color: #ffaa4f!important;
    color: #fff;
}
.hover-color-dribbble
{
    color: #ea4c89;
}
.hover-color-dribbble.soc-bef:before,.hover-color-dribbble:hover
{
    background-color: #ea4c89!important;
    color: #fff;
}
.hover-color-youtube
{
    color: #b00;
}
.hover-color-youtube.soc-bef:before,.hover-color-youtube:hover
{
    background-color: #b00!important;
    color: #fff;
}
.hover-color-instagram
{
    color: #517fa4;
}
.hover-color-instagram.soc-bef:before,.hover-color-instagram:hover
{
    background-color: #517fa4!important;
    color: #fff;
}
.hover-color-flickr
{
    color: #ff0084;
}
.hover-color-flickr.soc-bef:before,.hover-color-flickr:hover
{
    background-color: #ff0084!important;
    color: #fff;
}
.hover-color-vk
{
    color: #45668e;
}
.hover-color-vk.soc-bef:before,.hover-color-vk:hover
{
    background-color: #45668e!important;
    color: #fff;
}
.hover-color-vimeo
{
    color: #aad450;
}
.hover-color-vimeo.soc-bef:before,.hover-color-vimeo:hover
{
    background-color: #aad450!important;
    color: #fff;
}
.hover-color-tumblr
{
    color: #32506d;
}
.hover-color-tumblr.soc-bef:before,.hover-color-tumblr:hover
{
    background-color: #32506d!important;
    color: #fff;
}
.hover-color-skype
{
    color: #12a5f4;
}
.hover-color-skype.soc-bef:before,.hover-color-skype:hover
{
    background-color: #12a5f4!important;
    color: #fff;
}
#footer
{
    font-size: 13px;
}
#footer-widgets
{
    background-color: #292929;
    color: #fff;
    padding: 20px 0;
}
#footer-info
{
    color: #8d8d8d;
    font-size: 13px;
    padding: 30px 0;
}
#footer-info p
{
    margin-bottom: 0;
}
#footer-info ul
{
    cursor: default;
    display: block;
    font-weight: 700;
}
#footer-info ul li
{
    display: inline-block;
    padding-left: 10px;
}
#footer-info ul li a
{
    border-bottom: 1px solid transparent;
}
#footer-info ul li:hover a
{
    border-color: #256dc1;
}
#footer-widgets .do-space-bg
{
    background-color: rgba(255,255,255,.05);
    padding: 15px 0;
    text-align: center;
}
#footer-widgets .do-space-bg strong
{
    color: rgba(255,255,255,.5);
    display: block;
    padding-top: 10px;
}
#footer-widgets .paragraph-row
{
    margin-bottom: 20px;
}
#footer-widgets .paragraph-row:last-child
{
    margin-bottom: 0;
}
#footer-widgets .short-icon-text i.po,#footer-widgets .short-icon-text i.ti,#footer-widgets .short-icon-text i.fa
{
    background-color: #e0e0e0;
    color: #232323;
}
.lightbox hr
{
    margin: 20px 0;
}
.lightbox p,.lightbox span,.lightbox h2,.lightbox h3
{
    color: #232323;
    text-shadow: none;
}
.lightbox .loading-box
{
    line-height: 24px;
    padding: 50px 0;
}
.startlightbox
{
    overflow: hidden;
}
.startlightbox .lightbox
{
    display: block;
}
.lightbox
{
    background: rgba(0,0,0,.94);
    display: none;
    height: 100%;
    left: 0;
    overflow-y: scroll!important;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 1002;
}
.lightbox .main-black-block
{
    background: #212121;
    box-shadow: none;
    color: #8a8a8a;
    color: #ccc;
    font-size: 11.5px;
    font-weight: 300;
    line-height: 20px;
    padding-bottom: 5px;
}
.lightbox .lightcontent .light-close:hover,.lightbox .lightcontent-loading .light-close:hover
{
    background-color: #f0f0f0;
    border-color: transparent;
    color: #232323;
}
.lightbox .lightcontent .light-close:active,.lightbox .lightcontent-loading .light-close:active
{
    background-color: #ccc;
    border-color: transparent;
    color: #232323;
}
.lightbox .lightcontent .light-close,.lightbox .lightcontent-loading .light-close
{
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: block;
    font-family: Arial;
    font-size: 14px;
    height: 36px;
    line-height: 33px;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: center!important;
    text-shadow: none;
    top: -50px;
    width: 36px;
}
.lightbox .lightcontent,.lightbox .lightcontent-loading
{
    background: #f4f4f4;
    box-shadow: 0 1px 4px rgba(0,0,0,.5);
    margin: 100px auto 70px;
    max-width: 100%;
    position: relative;
    text-align: left;
    width: 1200px;
}
.lightbox .light-title
{
    color: #fff;
    display: block;
    height: 23px;
    overflow: hidden;
    position: absolute;
    text-overflow: ellipsis;
    text-shadow: 0 1px 3px rgba(0,0,0,.6);
    top: -33px;
    white-space: nowrap;
    width: 780px;
}
.lightbox .gallery-thumbs
{
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
}
.lightbox .thacontent
{
    padding: 0 25px 20px;
}
.loading-box
{
    display: block;
    text-align: center;
}
.loading-box .loading-image
{
    display: block;
    padding-top: 20px;
    text-align: center;
}
.lightbox .carousel-left
{
    left: 8px;
}
.lightbox .carousel-right
{
    right: 8px;
}
.lightbox blockquote
{
    padding-bottom: 30px;
}
.lightbox .article-main-content
{
    padding: 0 55px;
    width: auto;
}
.loading-message
{
    background: #f0f0f0;
    display: block;
    font-size: 11px;
    line-height: 140%;
    padding: 10px 15px;
}
.loading-message img
{
    display: block;
    float: left;
    padding-right: 15px;
    width: 34px;
}
.main-content-split .loading-message img
{
    display: none;
}
.loading-message:before
{
    clear: both;
    content: '';
    display: block;
}
.loading-message b
{
    display: block;
    font-size: 18px;
    padding-bottom: 4px;
}
.ls-fullwidth .ls-nav-prev,.ls-fullwidth .ls-nav-next
{
    z-index: 20px;
}
.ls-fullwidth .ls-nav-next
{
    right: 50px!important;
}
.ls-fullwidth .ls-nav-prev
{
    left: 50px!important;
}
.lightbox .big-photo-block .the-image
{
    background-color: transparent;
    box-shadow: none;
    padding-top: 10px;
    text-align: center;
}
.lightbox .big-photo-block .the-image img
{
    max-width: 98%;
}
.lightbox .big-photo-block .the-thumbs
{
    margin-left: 1%;
    margin-right: 1%;
    overflow: hidden;
}
.lightbox .lightbox-content
{
    display: block;
    padding: 0 2% 8px;
}
.the-image img
{
    max-width: 100%;
}
.lightbox .photo-gallery-full
{
    box-shadow: none;
}
.lightbox .photo-gallery-main:hover .photo-controls.prev
{
    left: 20px;
}
.lightbox .photo-gallery-main:hover .photo-controls.next
{
    right: 20px;
}
.waiter.loading
{
    background-image: url(../images/loading-ot.gif);
    background-position: center;
    background-repeat: no-repeat;
}
.waiter.loading img
{
    opacity: .3;
}
.lightbox .photo-gallery-context-c
{
    margin-top: 0;
}
.ot-wrapper
{
    position: relative;
}
#reviews #comments
{
    border-bottom: 0;
    padding-bottom: 0;
}
#reviews #comments .comment-text
{
    margin-left: 0;
}
#reviews #comments .star-rating
{
    float: right;
}
.woocommerce-ordering
{
    float: right;
    margin-top: -43px;
}
.woocommerce-ordering select
{
    font-size: 14px;
    margin-top: -10px;
    padding: 4px 10px;
}
.woocommerce .products
{
    clear: both;
    margin-top: -20px;
    padding-left: 0;
    padding-top: 0;
}
.woocommerce .products .product:after,.woocommerce .products:after
{
    clear: both;
    content: '';
    display: block;
}
.product>.summary .price
{
    color: #8dbe24;
    font-size: 26px;
    font-weight: 700;
}
.woocommerce .products .product
{
    float: left;
    list-style: none;
    margin-left: 2.66%;
    margin-top: 20px;
    position: relative;
    text-align: center;
    width: 23%;
}
.woocommerce .products .product a:first-child
{
    color: #232323;
    display: block;
    margin-bottom: 12px;
    text-decoration: none;
}
.woocommerce .products .product a.button
{
    float: left;
    margin-bottom: 10px;
    padding: 9px 14px;
}
.woocommerce .products .product a:after
{
    clear: both;
    content: '';
    display: block;
}
.woocommerce .products .product h3
{
    display: block;
    font-size: 1em;
    font-weight: 300;
    margin-bottom: 10px;
    text-align: left;
}
.woocommerce .products .product a:hover h3
{
    text-decoration: underline;
}
.woocommerce .products .product:nth-child(4n+1)
{
    clear: both;
    margin-left: 0;
}
.woocommerce .product .onsale,.woocommerce .products .onsale
{
    background: #e64a19;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 15px;
    position: absolute;
    top: 15px;
    z-index: 2;
}
.woocommerce .products img
{
    margin-bottom: 12px;
    max-width: 100%;
    width: 100%;
}
.woocommerce .products .star-rating
{
    float: left;
    margin-bottom: 10px;
}
.woocommerce .products .price
{
    clear: both;
    float: left;
}
.woocommerce .products .price del
{
    color: #aaa;
    display: inline-block;
    font-size: .9em;
    line-height: 1.2em;
    padding-right: 5px;
}
.woocommerce .products .price .amount
{
    color: #6ca516;
    font-weight: 700;
}
.woocommerce .products .price del .amount
{
    color: inherit;
    font-weight: 400;
}
.woocommerce .product
{
    display: block;
    margin-bottom: 30px;
}
.woocommerce .product:after
{
    clear: both;
    content: '';
    display: block;
}
.woocommerce .product>.images
{
    display: block;
    float: left;
    width: 41%;
}
.woocommerce .product>.images>a>img
{
    width: 100%;
}
.woocommerce .product>.images .thumbnails
{
    display: block;
    font-size: 0;
    padding-top: 5px;
}
.woocommerce .product>.images .thumbnails img
{
    margin-left: 3.3%;
    margin-top: 10px;
    width: 31%;
}
.woocommerce .product>.images .thumbnails a:nth-child(3n+1) img
{
    clear: both;
    margin-left: 0;
}
.woocommerce .product>.summary
{
    display: block;
    float: left;
    margin-left: 3%;
    width: 56%;
}
.woocommerce-tabs
{
    clear: both;
    display: block;
    padding-top: 20px;
}
.woocommerce-tabs .entry-content
{
    border: 1px solid #e9e9e9;
    border-radius: 0;
    box-sizing: border-box;
    float: right;
    margin-bottom: 30px;
    margin-top: -1px;
    padding: 30px;
    width: 100%;
}
.woocommerce-tabs .tabs
{
    margin: 0;
    padding-bottom: 0;
    padding-left: 0;
    position: relative;
}
.woocommerce-tabs .tabs:after
{
    clear: both;
    content: '';
    display: block;
}
.woocommerce-tabs .tabs li
{
    list-style: none;
    margin-left: 0;
    margin-top: 0;
}
.woocommerce-tabs .tabs li a
{
    background: #fff;
    border: 1px solid #e9e9e9;
    border-top-width: 2px;
    color: #999;
    display: inline-block;
    float: left;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    margin-right: 5px;
    padding: 12px 30px;
}
.woocommerce-tabs .tabs li.active a
{
    border-bottom: 1px solid #fff;
    border-top: 2px solid #169fda;
    color: #000;
}
.woocommerce-tabs #comments h2,.woocommerce-tabs #tab-description h2
{
    font-size: 1.4em;
}
.woocommerce #reviews #comments ol.commentlist
{
    list-style: none;
    padding-left: 0;
}
.woocommerce #reviews #comments ol.commentlist li
{
    border-top: 1px dotted #e2e2e2;
    box-sizing: border-box;
    margin-bottom: 20px;
    margin-top: 0;
    padding-left: 80px;
    padding-top: 20px;
    position: relative;
}
.woocommerce-page #reviews #comments ol.commentlist li img.avatar
{
    border: 0;
    border-radius: 40px;
    left: 0;
    margin-top: 6px;
    padding: 0;
    position: absolute;
    top: 20px;
    width: 50px;
}
.woocommerce #reviews #comments .star-rating
{
    margin-bottom: 8px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p,.woocommerce-page #reviews #comments ol.commentlist li .comment-text p
{
    margin: 0 0 8px;
}
.woocommerce .product
{
    position: relative;
}
.woocommerce-info
{
    background: #f5f5f5;
    border-left: 3px solid #ecc31f;
    display: block;
    margin-bottom: 20px;
    padding: 20px;
}
.woocommerce-info .button
{
    float: right;
    margin-top: -7px!important;
    position: relative;
}
.woocommerce-message
{
    background: #f5f5f5;
    border-left: 3px solid #8fbe29;
    display: block;
    margin-bottom: 20px;
    padding: 20px;
}
.woocommerce-message .button
{
    float: right;
    margin-top: -7px!important;
    position: relative;
}
.woocommerce-error
{
    background: #f5f5f5;
    border-left: 3px solid #da222b;
    display: block;
    margin-bottom: 20px;
    padding: 20px!important;
}
.woocommerce-error li
{
    list-style-type: none;
}
.woocommerce-message .button
{
    float: right;
    margin-top: -7px!important;
    position: relative;
}
.summary .price
{
    float: left;
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 5px;
}
div[itemprop=description]
{
    clear: both;
    margin-bottom: 30px;
}
.cart .quantity
{
    clear: both;
    float: left;
    height: 50px;
    margin-bottom: 5px;
    position: relative;
    width: 120px;
}
.cart .quantity input.plus,.cart .quantity input.minus
{
    background-color: #f8f8f8;
    background-repeat: repeat-x;
    border: 1px solid #e1e1e1;
    border-radius: 0;
    color: #666;
    cursor: pointer;
    display: inline!important;
    height: 35px;
    line-height: 35px;
    margin: 0;
    padding: 0;
    position: relative;
    vertical-align: middle;
    width: 35px;
}
.cart .quantity input.plus
{
    left: 35px;
}
.woocommerce .container div.product form.cart .button
{
    margin-bottom: 20px;
}
form.cart .button:focus
{
    outline: none;
}
.container .form-submit input
{
    background: #fff;
    border: 2px solid #111;
    color: #111;
    font-size: 14px;
}
.container .form-submit input:hover
{
    border-color: #119dd9;
    border-radius: 0;
    color: #119dd9;
}
.woocommerce .cart .quantity input.qty
{
    border-bottom-width: 1px;
    border-left: medium none;
    border-right: medium none;
    border-top: 1px solid #e2e2e2;
    box-sizing: border-box;
    display: inline;
    font-size: 15px;
    height: 35px;
    left: 35px;
    line-height: 35px;
    margin: 0;
    padding: 0 5px;
    position: absolute;
    position: relative;
    text-align: center;
    top: 0;
    vertical-align: middle;
    width: 35px;
    z-index: 2;
}
input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button
{
    margin: 0;
    webkit-appearance: none;
}
.woocommerce .summary button.button
{
    background: #8bb818;
    clear: both;
    font-size: 1em!important;
    margin-bottom: 20px;
    padding: 9px 17px 10px;
}
.woocommerce .summary .variations_form .variations
{
    line-height: 150%;
}
.woocommerce .quantity input.qty,.woocommerce #content .quantity input.qty,.woocommerce-page .quantity input.qty,.woocommerce-page #content .quantity input.qty
{
    background-image: none;
    border-color: #e1e1e1;
    box-shadow: none;
    font-size: 12px;
    font-weight: 400;
    moz-box-shadow: none;
    o-box-shadow: none;
    webkit-box-shadow: none;
}
.woocommerce .quantity input.qty,.woocommerce-page .quantity input.qty,.woocommerce #content .quantity input.qty,.woocommerce-page #content .quantity input.qty
{
    float: none!important;
}
.summary .product_meta
{
    clear: both;
    margin-bottom: 15px;
    margin-top: 5px;
}
.summary .product_meta .divider
{
    background: #e2e2e2;
    height: 2px;
    margin-bottom: 15px;
    width: 30px;
}
.summary .single_variation:after
{
    clear: both;
    content: '';
    display: block;
}
.summary .variations
{
    margin-bottom: 10px;
    vertical-align: middle;
}
.summary .variations label
{
    display: inline-block;
    padding-top: 5px;
}
.summary .variations td
{
    padding-right: 10px;
}
.summary .variations select
{
    border: 1px solid #e2e2e2;
    cursor: pointer;
    margin-right: 10px;
    padding: 3px 6px;
}
#review_form_wrapper form
{
    display: block;
    margin-top: 35px;
}
#review_form_wrapper form>p label
{
    font-size: 14px;
    margin-bottom: 5px;
}
#review_form_wrapper form>p
{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 55%;
}
#review_form_wrapper form>p textarea,#review_form_wrapper form>p input[type=text]
{
    border: 1px solid #c4c4c4;
    border-radius: 2px;
    box-sizing: border-box;
    color: #949494;
    display: block;
    font-family: Arial;
    font-size: 1em;
    line-height: 14px;
    margin: 0;
    padding: 12px 15px;
    width: 100%;
}
#review_form_wrapper p.stars
{
    display: inline-block;
    margin-bottom: 0;
    margin-left: 15px;
    position: relative;
}
#review_form_wrapper p.stars a
{
    color: transparent;
    display: inline-block;
    font-family: FontAwesome;
    font-size: 1em;
    letter-spacing: 0;
    margin-right: 4px;
    position: relative;
    width: 20px;
}
#review_form_wrapper p.stars a.active:before,#review_form_wrapper p.stars a:hover:before
{
    color: #f7b019;
    content: "";
    display: block;
    font-family: FontAwesome;
    font-size: inherit;
    letter-spacing: 5px;
    position: absolute;
    right: -1px;
    text-align: right;
    z-index: 20;
}
#review_form_wrapper p.stars>span:after
{
    color: #ccc;
    content: "\f005\f005\f005\f005\f005";
    display: block;
    font-family: FontAwesome;
    font-size: inherit;
    letter-spacing: 5px;
    position: absolute;
    top: 0;
    z-index: 0;
}
#review_form_wrapper p.stars a.active,#review_form_wrapper p.stars a:hover
{
    z-index: 20;
}
#review_form_wrapper p.stars a.star-1
{
    z-index: 5;
}
#review_form_wrapper p.stars a.star-2
{
    z-index: 4;
}
#review_form_wrapper p.stars a.star-3
{
    z-index: 3;
}
#review_form_wrapper p.stars a.star-4
{
    z-index: 2;
}
#review_form_wrapper p.stars a.star-5
{
    z-index: 1;
}
#review_form_wrapper p.stars a.star-1.active:before,#review_form_wrapper p.stars a.star-1:hover:before
{
    content: "\f005";
    right: -3px;
}
#review_form_wrapper p.stars a.star-2.active:before,#review_form_wrapper p.stars a.star-2:hover:before
{
    content: "\f005\f005";
    right: -2px;
}
#review_form_wrapper p.stars a.star-3.active:before,#review_form_wrapper p.stars a.star-3:hover:before
{
    content: "\f005\f005\f005";
    right: 0;
}
#review_form_wrapper p.stars a.star-4.active:before,#review_form_wrapper p.stars a.star-4:hover:before
{
    content: "\f005\f005\f005\f005";
    right: 1px;
}
#review_form_wrapper p.stars a.star-5.active:before,#review_form_wrapper p.stars a.star-5:hover:before
{
    content: "\f005\f005\f005\f005\f005";
    right: 2px;
}
#review_form_wrapper input[type=submit]
{
    background: #e34922;
    border: 0;
    border-radius: 2px;
    color: #fff!important;
    cursor: pointer;
    display: inline-block;
    font-size: .8em!important;
    margin: 0 2px 5px 0;
    padding: 8px 17px;
    text-decoration: none!important;
    text-transform: uppercase;
}
#review_form_wrapper input[type=submit]:hover
{
    background: #232323!important;
}
.widget>form>div #s
{
    padding: 8px 10px;
    width: 130px;
}
.star-rating
{
    color: #f7b019;
    display: inline-block;
    font-family: FontAwesome;
    font-size: 1em;
    height: 1em;
    letter-spacing: 2px;
    line-height: 1em;
    overflow: hidden;
    position: relative;
    width: 5.2em;
}
.star-rating:before
{
    color: #dfdbdf;
    content: "\f005\f005\f005\f005\f005";
    float: left;
    font-size: inherit;
    left: 0;
    letter-spacing: inherit;
    position: absolute;
    top: 0;
}
.star-rating span
{
    float: left;
    font-size: inherit;
    left: 0;
    letter-spacing: inherit;
    overflow: hidden;
    padding-top: 1.5em;
    position: absolute;
    top: 0;
}
.star-rating span:before
{
    color: #f7b019;
    content: "\f005\f005\f005\f005\f005";
    font-size: inherit;
    left: 0;
    letter-spacing: inherit;
    position: absolute;
    top: 0;
}
.widget ul.product_list_widget li
{
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 14px;
}
.widget ul.product_list_widget li:after
{
    clear: both;
    content: '';
    display: block;
}
.widget ul.product_list_widget li a
{
    border: none;
    color: #111;
    font-size: 14px;
    line-height: 1.5em;
    padding: 0;
    text-transform: none;
    width: 100%;
}
.widget ul.product_list_widget .star-rating
{
    display: block;
    float: none!important;
    margin: 3px 0 2px!important;
}
.widget ul.product_list_widget li del span.amount,.widget ul.product_list_widget li del
{
    color: #ccc;
}
.widget ul.product_list_widget li .reviewer,.widget ul.product_list_widget li .amount
{
    color: #777;
    display: inline-block;
    font-size: 12px;
    margin-top: 5px;
}
.widget ul.product_list_widget li a:hover
{
    color: #111;
    text-decoration: underline;
}
.widget .product_list_widget li img
{
    margin-right: 15px;
    margin-top: 4px;
    max-width: 48px;
}
.widget ul.product_list_widget li img
{
    left: 0;
    position: absolute;
}
.widget ul.product_list_widget li
{
    margin-bottom: 14px;
    min-height: 58px;
}
.widget ul.product_list_widget li a
{
    display: block;
    padding-left: 60px;
    position: relative;
    width: auto;
}
.widget ul.product_list_widget li .quantity
{
    line-height: 150%!important;
}
.widget ul.product_list_widget li .quantity .amount
{
    font-size: 1em;
    line-height: inherit!important;
    margin-top: 0!important;
}
.widget ul.product_list_widget li .variation p
{
    margin-bottom: 0;
}
.widget ul.product_list_widget li .quantity,.widget ul.product_list_widget li .variation,.widget ul.product_list_widget li .reviewer,.widget ul.product_list_widget li>del,.widget ul.product_list_widget li>.amount,.widget ul.product_list_widget .star-rating
{
    margin-left: 60px!important;
}
.widget .widget_shopping_cart_content .total
{
    border-top: 2px solid #dfdfdf;
    display: block;
    font-size: 1.14em;
    margin-top: 14px;
    padding-top: 12px;
}
.widget .widget_shopping_cart_content .total .amount
{
    float: right;
}
.widget .widget_shopping_cart_content .buttons
{
    margin-bottom: 0;
}
.price_slider_wrapper .price_slider
{
    margin-bottom: 15px;
}
.price_slider_wrapper input
{
    transition: none;
    webkit-transition: none;
}
.price_slider_wrapper .price_slider_amount
{
    font-size: .8751em;
    line-height: 2.4em;
    text-align: right;
}
.price_slider_wrapper .price_slider_amount .button
{
    float: left;
}
.price_slider_wrapper .ui-slider
{
    position: relative;
    text-align: left;
}
.price_slider_wrapper .ui-slider .ui-slider-handle
{
    background: #fafafa;
    border: 1px solid #b8b8b8;
    border-radius: 1em;
    cursor: pointer;
    height: .8em;
    margin: 0 -2px;
    outline: none;
    position: absolute;
    top: -.2em;
    transition: none;
    webkit-transition: none;
    width: .75em;
    z-index: 2;
}
.price_slider_wrapper .ui-slider .ui-slider-handle:last-child
{
    margin-left: -.5em;
}
.price_slider_wrapper .ui-slider .ui-slider-range
{
    background: #3c98ca;
    border: 0;
    border-radius: 1em;
    display: block;
    font-size: .7em;
    position: absolute;
    z-index: 1;
}
.price_slider_wrapper .price_slider_wrapper .ui-widget-content
{
    background: #f2f2f2!important;
    border-radius: 1em;
}
.price_slider_wrapper .ui-slider-horizontal
{
    background: #e6e6e6;
    height: .5em;
}
.price_slider_wrapper .ui-slider-horizontal .ui-slider-range
{
    height: 100%;
    top: 0;
}
.price_slider_wrapper .ui-slider-horizontal .ui-slider-range-min
{
    left: -1px;
}
.price_slider_wrapper .ui-slider-horizontal .ui-slider-range-max
{
    right: -1px;
}
.woocommerce-pagination
{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    text-align: center;
    width: 100%;
}
.woocommerce-pagination ul.page-numbers
{
    display: inline-block;
    margin: 0;
    padding: 0;
}
.woocommerce-pagination .page-numbers li
{
    display: inline-block;
    list-style: none;
    margin: 3px 1px!important;
    padding: 0;
}
.woocommerce-pagination .page-numbers li .page-numbers
{
    background: transparent;
    border: 1px solid #444;
    border-radius: 30px;
    color: #444;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    line-height: 100%;
    margin: 0;
    padding: 9px 12px;
    text-decoration: none!important;
    text-shadow: none;
}
.woocommerce-pagination .page-numbers li .page-numbers.current,.woocommerce-pagination .page-numbers li .page-numbers:hover
{
    background: #444;
    color: #fff!important;
}
.article-content .woocommerce .cart_totals h2
{
    font-size: 1em;
    margin-top: 0;
    padding-bottom: 8px;
    padding-top: 0;
}
table.cart
{
    float: left;
    margin: 0;
    margin-bottom: 30px;
    width: 70%;
}
table.cart tr th
{
    border-bottom: 2px solid #e2e2e2;
    font-size: 1em;
    padding-bottom: 7px;
    padding-left: 0;
    padding-top: 3px;
    text-align: left;
    text-transform: uppercase;
}
table.cart tr th.product-subtotal
{
    text-align: right;
}
table.cart tr td
{
    font-size: 15px;
    padding-left: 0;
    text-align: left;
    vertical-align: middle;
}
table.cart tr td.product-add-to-cart
{
    text-align: right;
}
table.cart tr td.product-thumbnail
{
    font-size: 60px;
}
table.cart tr td img
{
    max-height: 70px;
    max-width: 100%;
    width: auto;
}
table.cart tr td.product-name a
{
    border: none;
    color: #333;
    padding: 0;
}
table.cart tr td a:hover
{
    border: none;
    color: #111;
    text-decoration: underline;
}
table.cart td .quantity
{
    height: 35px;
    margin: 0;
    width: auto;
}
table.cart .quantity input.plus,table.cart .quantity input.minus
{
    font-weight: 400;
    height: 35px;
    line-height: 35px;
    width: 30px;
}
table.cart .quantity input.qty
{
    height: 35px;
    left: 30px;
    line-height: 35px;
}
table.cart td.product-remove a
{
    border: 1px solid #eee;
    border-radius: 50%;
    color: #999;
    font-size: 13px;
    line-height: 20px;
    padding: 2px 8px;
    text-align: center;
}
table.cart td.product-remove a:hover
{
    background: #e93d12;
    border: 1px solid transparent;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
}
table.cart td dl
{
    margin: 0;
}
table.cart td dl p
{
    color: #888;
    font-size: 13px;
    line-height: 1.4em;
    margin: 0;
    margin-left: 6px;
    margin-right: 15px;
}
table.cart td dt,table.cart td dd
{
    color: #888;
    float: left;
    font-size: 12px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4em;
}
table.cart td dt
{
    color: #666;
    text-transform: capitalize;
}
.cart_totals h2
{
    border-bottom: 2px solid #e2e2e2;
    font-size: 13px;
    margin-top: 0;
    padding: 1px 8px 2px 0;
    padding-left: 0;
    text-transform: uppercase;
}
.coupon h3
{
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 20px;
    padding: 11px 8px;
    padding-left: 0;
    text-transform: uppercase;
}
.coupon input#coupon_code
{
    border: 1px solid #ccc;
    border-radius: 2px;
    box-sizing: border-box;
    margin-bottom: 10px;
    padding: 6px 8px 7px;
    width: 29.6%;
}
.coupon .button
{
    width: auto;
}
.woocommerce-page .cart-collaterals input
{
    font-size: 14px;
    margin-bottom: 2px;
    padding: 12px;
    width: 100%;
}
.woocommerce-page .cart-collaterals input.update-button,.woocommerce .update-button
{
    background: #fff!important;
    border: 2px solid #e2e2e2;
    color: #aeaeae;
    font-weight: 700;
}
.woocommerce-page .cart-collaterals input.update-button:hover,.woocommerce .update-button:hover
{
    border-color: #333;
    color: #333;
}
.woocommerce-page .cart-collaterals input.checkout-button,.woocommerce .checkout-button
{
    background-color: #8fbe29;
}
.woocommerce .checkout-button
{
    margin-bottom: 25px;
}
.woocommerce-page .cart-collaterals .coupon input.button
{
    font-size: 12px;
    padding: 10px 20px;
    width: auto;
}
.cart_totals table
{
    font-size: 14px;
    margin: 0;
    margin-bottom: 20px;
    width: 100%;
}
.cart_totals table tr.order-total th,.cart_totals table tr.order-total td
{
    border-bottom: 2px solid #e2e2e2;
}
.cart_totals table td
{
    text-align: right;
}
.cart_totals table th,.cart_totals table td
{
    border-bottom: 1px dotted #ccc;
    padding: 8px 8px 8px 0;
}
.cart_totals table tr:nth-child(even),table.cart tr:nth-child(even)
{
    background-color: #fff;
}
table.cart tr td.product-subtotal
{
    font-weight: 700;
    text-align: right;
}
.cart-collaterals h2
{
    margin: 20px 0 0;
}
table.cart tr:nth-child(even)
{
    border-bottom: 1px dotted #e2e2e2;
    border-top: 1px dotted #e2e2e2;
}
.cart-collaterals .shipping_calculator h2
{
    margin-bottom: 0;
    margin-top: 20px;
    padding-top: 0;
}
.woocommerce:after
{
    clear: both;
    content: '';
    display: block;
}
.cart-collaterals h2 a,.cart-collaterals h2 a:hover
{
    background-color: inherit;
    color: #289dcc;
    font-size: 16px;
}
.cart-collaterals h2 a:before
{
    bottom: -1px;
    content: "\f196";
    font-family: FontAwesome;
    margin-right: 8px;
    position: relative;
}
.woocommerce .shipping-calculator-form button
{
    font-weight: 400;
}
.cart-collaterals .shipping-calculator-form select
{
    padding: 6px 7px;
    width: 100%;
}
.cart-collaterals .shipping-calculator-form p
{
    margin-bottom: 5px;
}
.cart-collaterals .shipping-calculator-form .input-text
{
    box-sizing: border-box;
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 5px;
    padding: 5px 10px;
    width: 100%;
}
.woocommerce-page .shipping-calculator-form button.button
{
    font-size: 11px;
    font-weight: 400;
}
.woocommerce-page .shipping-calculator-form button.button:hover
{
    border-radius: 0;
}
.checkout-confirmed-payment
{
    background: #d8f1d3;
    margin-bottom: 30px;
    padding: 30px 30px 1px;
}
.checkout-confirmed-payment p
{
    color: #4a863c;
    font-size: 24px;
}
.checkout-confirmed-payment ul li:before
{
    background: #60a550!important;
}
.cart_totals table th
{
    font-weight: 400;
    text-align: left;
}
.woocommerce .cart .cart_item .quantity input.qty
{
    left: 30px;
}
.shop_table.cart .coupon
{
    padding-top: 15px;
}
.shop_table.cart .coupon label
{
    display: block;
    padding-bottom: 5px;
}
.shop_table.cart .coupon .button
{
    background-color: #aaa;
}
.article-content.page .main-title h2
{
    margin-bottom: 0;
}
label
{
    display: inline-block;
    font-weight: 700;
    margin-bottom: 5px;
}
p.form-row input.input-text
{
    border: 1px solid #ccc;
    box-sizing: border-box;
    color: #333;
    font-size: 15px;
    padding: 10px 12px;
    width: 100%;
}
span.required
{
    color: red;
}
form.login
{
    background: #f9f9f9;
    border: 2px solid #f0f0f0;
    border-radius: 4px;
    font-size: 13px;
    margin: 30px 0;
    padding: 32px;
}
form.login label
{
    display: block;
}
form.login input.input-text
{
    width: 100%;
}
.woocommerce-page form.login input.button
{
    font-size: 14px;
    margin: 5px 0 22px;
}
.woocommerce-page form.login input#rememberme
{
    margin-right: 4px;
}
p.form-row label
{
    display: inline-block;
}
p.form-row input.input-text
{
    color: #333;
    font-size: 15px;
    width: 100%;
}
.addresses h3
{
    font-size: 18px;
    font-weight: 600;
}
.addresses address
{
    display: block;
    padding-top: 5px;
}
.col2-set.addresses
{
    overflow: hidden;
}
.col2-set.addresses .col-1,.col2-set.addresses .col-2
{
    float: left;
    margin-right: 30px;
    width: 46%;
}
.article-content .woocommerce-billing-fields h3,.article-content .woocommerce-shipping-fields h3
{
    font-size: 1.3em;
}
#order_review_heading
{
    border-top: 2px solid #e2e2e2;
    clear: both;
    display: block;
    padding-top: 20px;
}
table.shop_table
{
    margin-bottom: 30px;
    width: 100%;
}
table.shop_table th,table.shop_table td
{
    font-size: 18px;
    padding: 10px;
    padding-left: 0;
}
table.shop_table tr:nth-child(even)
{
    background: #fff;
}
table.shop_table tr th,table.shop_table tfoot td
{
    border-bottom: 2px solid #e2e2e2;
}
table.shop_table thead tr th
{
    font-size: 13px;
    text-transform: uppercase;
}
table.shop_table tr.order-total th,table.shop_table tr.shipping th,table.shop_table tr.cart-subtotal th
{
    text-align: left;
}
table.shop_table thead tr th.product-name
{
    font-size: 1.2em;
    text-align: left;
}
table.shop_table thead tr th.product-subtotal
{
    text-align: right;
}
table.shop_table .product-total,table.shop_table tfoot td
{
    text-align: right;
}
table.shop_table tr.order-total th
{
    text-transform: uppercase;
}
ul.payment_methods .payment_method_bacs p
{
    background: #fff;
    margin: 5px 0 10px;
    padding: 15px;
}
ul.payment_methods
{
    background: #f2f2f2;
    margin-left: 0;
    padding: 20px!important;
}
ul.payment_methods li
{
    list-style-type: none;
    margin-left: 0;
}
ul.payment_methods li.payment_method_paypal img
{
    display: inline;
    margin-left: 7px;
    margin-top: -2px;
}
ul.payment_methods li input
{
    margin-right: 6px;
}
ul.payment_methods li:before
{
    display: none;
}
ul.payment_methods p
{
    box-sizing: border-box;
    color: #777;
    font-size: 13px;
    line-height: 1.5em;
}
input.button.place_order
{
    font-size: 14px!important;
    padding: 12px 20px;
}
textarea.input-text
{
    border: 1px solid #ccc;
    box-sizing: border-box;
    color: #333;
    font-family: Arial;
    font-size: 15px;
    padding: 10px 12px;
    width: 100%;
}
.shop_table .cart_item td
{
    border-bottom: 1px solid #f0f0f0;
}
.widget ul.product_list_widget li:last-child
{
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
body.dark-scheme,body.dark-scheme .boxed,body.dark-scheme .dat-menu-container
{
    background-color: #191919;
}
body.dark-scheme,body.dark-scheme .sidebar.khoda-sidebar-large,body.dark-scheme .article-grid-default .item p
{
    color: #b7b7b7;
}
body.dark-scheme h1,body.dark-scheme h2,body.dark-scheme h3,body.dark-scheme h4,body.dark-scheme h5,body.dark-scheme h6
{
    color: #f0f0f0;
}
body.dark-scheme a:not(.post-title-comment):not(.item-meta-i):not(.fa):not(.button)
{
    color: #ccc;
}
body.dark-scheme .main-archive-block-c .item-content a.item-meta-i:hover,body.dark-scheme .photo-gallery-blocks .item-content a.item-meta-i:hover,body.dark-scheme .w-gallery-slider .item-meta a.item-meta-i:hover,body.dark-scheme .large-item-list .item .item-meta a.item-meta-i:hover,body.dark-scheme .khoda-content-block .khoda-content-title a.right:hover,body.dark-scheme .khoda-main-content-panel .khoda-content-title a.right:hover,body.dark-scheme .article-grid-default .item .item-meta a.item-meta-i:hover,body.dark-scheme .w-comment-list a.read-more-sm-link:hover,body.dark-scheme a:hover
{
    color: #f0f0f0;
}
body.dark-scheme .main-archive-block-c .item.item-small,body.dark-scheme #reviews #comments ol.commentlist li,body.dark-scheme .woocommerce-tabs .entry-content,body.dark-scheme .widget ul.product_list_widget li,body.dark-scheme .article-main-next-prev a,body.dark-scheme .khoda-post-author,body.dark-scheme #comments,body.dark-scheme #comments li,body.dark-scheme .w-twitter-feed .item,body.dark-scheme .w-review-articles .item,body.dark-scheme .sidebar .widget,body.dark-scheme .w-comment-list .item,body.dark-scheme .w-article-list .item,body.dark-scheme .w-article-list-num .item,body.dark-scheme .widget>h3,body.dark-scheme .khoda-content-block .khoda-content-title,body.dark-scheme .khoda-main-content-panel .khoda-content-title,body.dark-scheme .khoda-main-content-panel hr.block-hr,body.dark-scheme .khoda-main-content-panel .block-category-list .item,body.dark-scheme #khoda-read-later,body.dark-scheme #top-menu
{
    border-color: rgba(228,227,226,.1);
}
body.dark-scheme .top-panel-weather .w-stats
{
    background-color: #38383a;
}
body.dark-scheme #content .widget .widget-view-more,body.dark-scheme #content .view-more-items-button .view-more-half-size
{
    background-color: #2b2b2b;
    border-color: transparent;
    box-shadow: inset 0 120px 100px -100px rgba(255,255,255,.05);
    text-shadow: none;
}
body.dark-scheme #content .widget .widget-view-more:hover,body.dark-scheme #content .view-more-items-button .view-more-half-size:hover
{
    background-color: #2f2f2f;
}
body.dark-scheme #content .widget .widget-view-more:active,body.dark-scheme #content .view-more-items-button .view-more-half-size:active
{
    box-shadow: inset 0 120px 100px -100px rgba(255,255,255,0);
}
body.dark-scheme .star-rating:before,body.dark-scheme .item-stars:before
{
    color: rgba(255,255,255,.2);
}
body.dark-scheme .khoda-content-block .do-space
{
    background: #292929;
}
body.dark-scheme a.button,body.dark-scheme .button
{
    box-shadow: inset 0 120px 100px -100px rgba(255,255,255,.2),inset 0 -1px 0 rgba(255,255,255,.1);
}
body.dark-scheme .button:hover
{
    box-shadow: inset 0 120px 100px -100px rgba(255,255,255,.2),inset 0 -1px 0 rgba(255,255,255,.1),inset 0 0 0 100px rgba(255,255,255,.15);
}
body.dark-scheme .button:active
{
    box-shadow: inset 0 120px 100px -100px rgba(0,0,0,.08);
}
body.dark-scheme .label-input
{
    background-color: #292929;
    border: 1px solid rgba(221,221,221,.05);
    box-shadow: 0 2px 0 rgba(0,0,0,.03);
}
body.dark-scheme #header .header-socials a i
{
    background: #e0e0e0;
    color: #191919;
}
body.dark-scheme #header .header-socials a:hover i
{
    background: #fff;
}
body.dark-scheme .khoda-pagination .page-numbers:not(.current),body.dark-scheme #content .widget .tagcloud a
{
    background-color: #292929;
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: inset 0 120px 100px -100px rgba(255,255,255,.1);
    color: #919191;
    text-shadow: 0 1px 0 rgba(0,0,0,.5);
}
body.dark-scheme .khoda-pagination .page-numbers:not(.current):hover,body.dark-scheme #content .widget .tagcloud a:hover
{
    background-color: #f0f0f0;
    color: #232323;
    text-shadow: 0 1px 0 transparent;
}
body.dark-scheme #top-menu .wrapper>ul li:hover>a
{
    background-color: rgba(255,255,255,.1);
    color: #fff;
}
body.dark-scheme #khoda-read-later #khoda-read-later-info:hover
{
    color: #f0f0f0;
}
body.dark-scheme .khoda-pagination .page-numbers
{
    border-bottom: 1px solid rgba(220,220,220,.23);
}
body.dark-scheme .khoda-main-article-intro
{
    color: #fff;
}
body.dark-scheme .khoda-main-article-block
{
    color: #e8e8e8;
}
body.dark-scheme .wp-caption
{
    background-color: rgba(240,240,240,.1);
}
body.dark-scheme .wp-caption p
{
    color: #cacaca;
}
body.dark-scheme .khoda-main-article-meta .item-meta-i a:hover
{
    color: #fff!important;
}
body.dark-scheme .review-post-block>div:not(.review-post-block-score)
{
    background: rgba(240,240,240,.08);
    border-right: 1px solid #191919;
}
body.dark-scheme .article-main-next-next a strong,body.dark-scheme .article-main-next-prev a strong,body.dark-scheme #comments .reply-button:hover
{
    color: #fff;
}
body.dark-scheme #comments .reply-button:hover:before
{
    background-color: #ccc;
}
body.dark-scheme #comments .user-nick a
{
    color: #f0f0f0;
}
body.dark-scheme .ot-spacer.spacer-3:before,body.dark-scheme .ot-spacer
{
    background: #3a3a3a;
}
body.dark-scheme .ot-spacer strong,body.dark-scheme .ot-spacer i.fa
{
    background-color: #191919;
}
body.dark-scheme blockquote
{
    border-color: #3c3c3c;
}
body.dark-scheme .accordion>div:after
{
    background-color: #2e2e2d;
}
body.dark-scheme a.button.button-outline,body.dark-scheme .button.button-outline
{
    box-shadow: none;
}
body.dark-scheme .short-tabs.style-2>ul li:hover a,body.dark-scheme .short-tabs.style-2>ul li.active a,body.dark-scheme .short-tabs.style-2>div,body.dark-scheme .short-tabs:not(.style-2)
{
    background-color: #292929;
}
body.dark-scheme .short-tabs:not(.style-2)>ul>li:not(.active) a:hover
{
    color: #fff;
}
body.dark-scheme .short-tabs:not(.style-2)>ul
{
    border-color: #353535;
}
body.dark-scheme .table>tbody>tr>td,body.dark-scheme .table>tbody>tr>th,body.dark-scheme .table>tfoot>tr>td,body.dark-scheme .table>tfoot>tr>th,body.dark-scheme .table>thead>tr>td,body.dark-scheme .table>thead>tr>th
{
    border-color: #2e2e2d;
}
body.dark-scheme .table-striped>tbody>tr:nth-of-type(odd)
{
    background-color: #232322;
}
body.dark-scheme .photo-gallery-context-c
{
    background: #242526;
}
body.dark-scheme .lightbox .photo-gallery-context-c,body.dark-scheme .lightbox .photo-gallery-full-block
{
    background-color: transparent!important;
}
body.dark-scheme .lightbox .photo-gallery-context-c h2
{
    color: #232323;
}
body.dark-scheme select
{
    background: rgba(204,204,204,.15);
    border-color: rgba(204,204,204,.14);
}
body.dark-scheme .woocommerce-tabs .tabs li a,body.dark-scheme .panel
{
    background-color: #292929;
    border-color: rgba(204,204,204,.14);
}
body.dark-scheme .woocommerce-tabs .tabs li.active a
{
    background-color: #292929;
    border-color: transparent;
    border-top: 2px solid #169fda;
    color: #fff;
}
body.dark-scheme .khoda-sidebar-large .widget>h3,body.dark-scheme .khoda-sidebar-small .widget>h3,body.dark-scheme .khoda-content-block .khoda-content-title,body.dark-scheme .khoda-main-content-panel .khoda-content-title
{
    background-color: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.2);
}
#left-menu > li > a {
    color:#000;
    display: inline;
    font-size: 14px;
    font-weight: 600;
}
#left-menu li a:hover {
    color:#256dc1;
}
#left-menu > li {
    padding:5px;    
}
#left-menu > li ul {
    display: none;
    padding-left:15px;
} 
#left-menu  li::before {         
    color: #ccc;
     content: '\f105';
    display: inline-block;
    font-family: FontAwesome;
    padding-right: 10px;
    transition: all .5s;
}
#left-menu > li::before {
    content: '\f0da';
}
#left-menu > li.active::before {
    content: '\f0d7';
}
#left-menu > li ul li {
    padding:4px 0;
}
#left-menu > li ul a { 
    font-weight: normal;
}
.banner-container {
    width:100%;
    margin: 0 auto;
    -moz-column-count:5;
    -webkit-column-count: 5;
    column-count: 5;
    -moz-column-gap: 0em;
    -webkit-column-gap: 0em;
    column-gap: 0em;
}
.banner-container {
  /*  height:300px;
    overflow: hidden;  */
    
}
#main-banners img{
    cursor: pointer;
}  
#footer .widget > ul.menu li a {
    font-size:12px;
    font-weight: normal;
    display: inline;
}
#footer .widget a {
    color:#ccc;
}
#footer .widget p {
    font-size:12px;  
    margin-bottom:10px;  
}
#footer .widget > h3 {
    font-size:18px;
}
.logo-small {
    height:24px;
    margin-right: 10px;
}
.header-pob {
    font-size:12px;
}
#language {
    display:inline-block;
}                     
#content #description ul, #content #description ol{
    padding-left: 15px;
}
#content #description ul {
    list-style: inherit;
}
#content #description ol {
    list-style:decimal;
}

#content #description img {
    padding:10px;
}
#content #description table td {
    padding:4px 8px;
    border:1px solid #e4e3e2;
}
#content #description table {
    margin-bottom:15px;
}
#content #description p {
    margin-bottom:10px;
}
#content #description a {
    color: #256dc1;
    text-decoration: underline;
}
#content #description a:hover {
    text-decoration: none;
}
.breadcrumb {
    background: none;
    font-size:12px;
}
.breadcrumb a {
    font-size:12px;
}
.list-categories {
    margin:15px 0;
}
.list-categories li {
/*    display: inline-block;*/
    
}
.list-categories li a {
    font-weight:600;
    font-size:18px;
    line-height:1;
    background-color: #FFF;
    text-shadow: none;
    box-shadow: none;
    border: 0;
    padding: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 3px;
    display: block;
}
.list-categories li a i { 
    font-size:17px;
}
.list-categories li a:hover {
    color:#fff;
    background-color:#256dc1;
    text-shadow:0 1px 0 rgba(0,0,0,.2)
}
.animated {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}



@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@media (max-width: 768px) {
      .header-tools {
              text-align: center;
       } 
    }
.archive-select {
    top: 25px;
    color: #256dc1;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    right: 25px;
    overflow: hidden;
    padding-bottom:4px;
}
.archive-select:hover {
    color: #232323;
}
.archive-select::after {
    bottom: 0;
    content: '.......................................................................................................';
    display: block;
    font-size: 86%;
    font-weight: 400;
    left: 0;
    letter-spacing: .7px;
    line-height: 100%;
    position: absolute;
    white-space: nowrap;
}
#archive-box {
    display: none;
    padding-bottom:15px;
}

.bootstrap-datetimepicker-widget table td.day {
    background-color: #DDDDDD;
}
.bootstrap-datetimepicker-widget table td.day:hover, .bootstrap-datetimepicker-widget table td.hour:hover, .bootstrap-datetimepicker-widget table td.minute:hover, .bootstrap-datetimepicker-widget table td.second:hover {
    background-color: #337ab7 !important;
    color: #FFF;
}
.bootstrap-datetimepicker-widget table td.disabled, .bootstrap-datetimepicker-widget table td.disabled:hover {
    background: none !important;
    color: #CCCCCC !important;
}
.bootstrap-datetimepicker-widget table {
    border-spacing: 2px !important;
    border-collapse: separate;
}
.description-category img {
    padding:0 10px 10px 0;
    height:auto !important;
}

#scrollup
{
    position: fixed; 
    opacity: 0.8; 
    padding: 10px 15px; 
    background: #aaa;
    border-radius: 5px; 
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    right: 10px; 
    bottom: 130px; 
    display: none; 
    cursor: pointer;
}

body div#dat-menu div#scrollup > i.fa-angle-up
{
    font-size: 20px !important;
}


/*в режиме пмаловидящих убрать фиксированную привязку*/
html.js.csstransforms3d.ugost-active.ugost-showline #main-menu .main-menu-placeholder{
    position:static !important;
}

.item-meta .author, .article-author {
    font-weight: 300;
    font-size:11px;
} 