/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Global
    - Fonts
    - Vars
    - General
    - Grid
# Utilities
    - Breadcrumb
    - Pagination
# Positions
    - Top
    - Header
    - Main Navigation
    - Offcanvas
    - Logo Small
    - Header Slideshow
    - Top A
    - Top B
    - Main Bottom No Bg
    - Full Middle
    - Bottom A
    - Bottom C
    - Full Bottom
    - Footer
# Component Area
    - Main Component Area
    - Sidebar
    - Content Articles
    - Psalms
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/

/* Fonts */

@font-face {
    font-family: "FontAwesome";
    src: url("../fonts/fontawesome-webfont.woff2")
    format("woff2"),
    url("../fonts/fontawesome-webfont.woff")
    format("woff"),
    url("../fonts/fontawesome-webfont.ttf")
    format("truetype");
    font-weight: normal;
    font-style: normal;
}
/* noto-sans-hebrew-100 - hebrew */
@font-face {
  font-family: 'Noto Sans Hebrew';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/noto-sans-hebrew-v30-hebrew-100.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/noto-sans-hebrew-v30-hebrew-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/noto-sans-hebrew-v30-hebrew-100.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/noto-sans-hebrew-v30-hebrew-100.woff') format('woff'), /* Modern Browsers */
       url('../fonts/noto-sans-hebrew-v30-hebrew-100.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/noto-sans-hebrew-v30-hebrew-100.svg#NotoSansHebrew') format('svg'); /* Legacy iOS */
}
/* noto-sans-hebrew-regular - hebrew */
@font-face {
  font-family: 'Noto Sans Hebrew';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/noto-sans-hebrew-v30-hebrew-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/noto-sans-hebrew-v30-hebrew-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/noto-sans-hebrew-v30-hebrew-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/noto-sans-hebrew-v30-hebrew-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/noto-sans-hebrew-v30-hebrew-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/noto-sans-hebrew-v30-hebrew-regular.svg#NotoSansHebrew') format('svg'); /* Legacy iOS */
}
/* noto-sans-hebrew-600 - hebrew */
@font-face {
  font-family: 'Noto Sans Hebrew';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/noto-sans-hebrew-v30-hebrew-600.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/noto-sans-hebrew-v30-hebrew-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/noto-sans-hebrew-v30-hebrew-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/noto-sans-hebrew-v30-hebrew-600.woff') format('woff'), /* Modern Browsers */
       url('../fonts/noto-sans-hebrew-v30-hebrew-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/noto-sans-hebrew-v30-hebrew-600.svg#NotoSansHebrew') format('svg'); /* Legacy iOS */
}
/* noto-sans-hebrew-700 - hebrew */
@font-face {
  font-family: 'Noto Sans Hebrew';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/noto-sans-hebrew-v30-hebrew-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/noto-sans-hebrew-v30-hebrew-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/noto-sans-hebrew-v30-hebrew-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/noto-sans-hebrew-v30-hebrew-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/noto-sans-hebrew-v30-hebrew-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/noto-sans-hebrew-v30-hebrew-700.svg#NotoSansHebrew') format('svg'); /* Legacy iOS */
}
/* Vars */
:root {
    --rabenu-brown-color: #c77e3a;
     --rabenu-light-brown-color: #fff9f2;
    --rabenu-red-color: #9f0002;
    --rabenu-very-light-gray-color: #fafafa;
    --rabenu-light-gray-color: #f7f7f7;
    --rabenu-medium-gray-color: #eeeeee;
    --rabenu-dark-gray-color: #aaaaaa;
    --rabenu-very-dark-gray-color: #444444;
    --rabenu-light-blue-color: #f2f8fc;
    --rabenu-black-color: #000000;
    --rabenu-white-color: #ffffff;
}
body.sticky-header .sticky-header-container {
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 20px rgb(0,0,0,0.07);
    transition: all 0.5s ease-out;
}
.offcanvas.active {
    display: block;
    visibility:visible;
    opacity:1;
    z-index: 9999999999;
}
.offcanvas {
    display: none;
    visibility:hidden;
    opacity:0;
    transition:visibility 0.3s linear,opacity 0.3s linear;
    z-index: -1;
    width: 100%;
    max-height: 100vh;
    overflow-y: scroll;
    padding: 5px 0;
    bottom: 0;
    touch-action: none;
    background: #fff;
}
.offcanvas-bar {
    width: 100vw;
    max-width: 100vw;
    background: var(--rabenu-white-color);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    -ms-scroll-chaining: none;
}
#offcanvas ul.dropdown-nav {
    padding: 3px 34px 0 0;
    position: relative;
}
#offcanvas .nav-side {
    padding-bottom: 55px;
}
#offcanvas .nav-side li {
    margin-bottom: 3px;
}
#offcanvas .nav-side li a {
    display: flex;
    align-items: center;
    color: var(--rabenu-black-color);
    background-color: var(--rabenu-light-gray-color);
    padding: 10px 15px;
    border-radius: 5px;
}
#offcanvas .nav-side > li > a {
    color: var(--rabenu-brown-color);
}
#offcanvas .nav-side li a::before{
    content: "";
    width: 15px;
    height: 12px;
    margin: 0 0 0 7px;
    background-image: url("../images/nav-menu-arrow.svg");
    background-position: 0 0 ;
    background-repeat: no-repeat;
    background-size: contain;
}
html[dir="ltr"] #offcanvas .nav-side li a::before{
   transform: rotate(180deg);
    margin: 0 7px 0 0;
}
#offcanvas .nav-side li ul li  a::before {
    background-image: url("../images/nav-menu-sub-arrow.svg");
}
#offcanvas .nav.nav-side > li.active > a::before {
    background-image: url("../images/nav-menu-selected-arrow.svg");
}
html #offcanvas .nav.nav-side > li.active > a {
    background: var(--rabenu-brown-color);
    color: var(--rabenu-white-color);
}
html #offcanvas .nav.nav-side ul.dropdown-nav > li.active > a {
    font-weight: 700;
}
.mobile-navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(159,0,2);
    background: linear-gradient(135deg, rgba(159,0,2,1) 0%, rgba(199,126,58,1) 100%);
    padding: 8px 15px;
}
a.navbar-toggle {
    font-size: 38px;
    color: var(--rabenu-white-color);
    text-decoration: none;
    box-sizing: border-box;
}
.offcanvas-page a.navbar-toggle:after {
    content: "\f00d";
}
a.navbar-toggle:after {
    content: "\f0c9";
    font-family: FontAwesome;
    color: #ffffff;
}
.navbar-toggle:hover,
.navbar-toggle:focus {
    color: var(--rabenu-very-dark-gray-color);
    text-decoration: none;
    outline: none;
}
body,
.n2-ss-layer *,
#psalm-blessing-page .blessing-row .psalm-btn,
h1,
h2,
h3,
h4,
h5,
h6,
input,
.item-story .item-title.bold,
div.componentheading,
.discuss-form legend,
div.discuss-mod.recent-replies .item-title,
.readings-count,
.home-blessing-div,
.uk-scope a.uk-button-default,
.category-preview .mod-custom a,
a.pagination-load-more,
#tm-bottom-c .mod-custom a{
    font-family: "Noto Sans Hebrew", Arial, sans-serif !important;
}
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    background: var(--rabenu-white-color);
    color: var(--rabenu-very-dark-gray-color);
}
body {
    font-weight: 400;
    margin: 0;
    font-size: 18px;
    line-height: 1.5em;
}
h1,
h2,
h3,
h4,
h5,
h6,
strong,
b{
   font-weight: 600 !important;
    margin: 0 0 10px 0;
}
h1,
h2 {
    color: var(--rabenu-brown-color);
}
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select,
.convertforms .cf-input{
    color: var(--rabenu-black-color) !important;
    width: 100%;
    padding: 8px !important;
    font-size: 16px !important;
    border: 1px solid var(--rabenu-dark-gray-color) !important;
    border-radius: 0 !important;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: auto;
    background-color:  var(--rabenu-light-gray-color) !important;
}

.convertforms input[type="text"],
.convertforms input[type="email"],
.convertforms input[type="password"],
.convertforms select,
select{
  min-height: 40px !important;  
}
input[type="submit"],
form button{
    border: 0;
    padding: 10px 12px !important;
    font-size: 18px !important;
    line-height: 1em;
    cursor: pointer;
}
/* General */
img {
    border-radius: 3px;
}
a {
    background: transparent;
    transition: .1s ease-in-out;
}
a:active,
a:hover {
    outline: 0;
}
a {
    color: var(--rabenu-brown-color); 
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color: var(--rabenu-red-color); 
}



.uk-scope .uk-grid a,
.uk-scope .uk-grid .uk-link-reset a,
.uk-scope .uk-grid a.uk-link-reset{
    color: var(--rabenu-brown-color) !important;
    font-weight: 600;
}
.uk-scope .uk-grid a:hover,
.uk-scope .uk-grid .uk-link-reset a:hover,
.uk-scope .uk-grid a.uk-link-reset:hover{
    text-decoration: none;
    color: var(--rabenu-red-color) !important;
}
b,
strong {
    font-weight: bold;
}
q {
    font-style: italic;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
iframe {
    max-width: 100%;
}
audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}
audio,
canvas,
img,
svg,
video {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}
img {
    border: 0;
}
svg:not(:root) {
    overflow: hidden;
}
blockquote,
figure {
    margin: 0;
}
p,
ul,
ol,
dl,
blockquote,
pre,
address,
fieldset,
figure {
    margin: 0 0 20px 0;
}
* + p,
* + ul,
* + ol,
* + dl,
* + blockquote,
* + pre,
* + address,
* + fieldset,
* + figure {
    margin-top: 20px;
}
* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 {
    margin-top: 25px;
}
h1 {
    font-size: 40px;
    line-height: 50px;
}
h2 {
    font-size: 32px;
    line-height: 40px;
}
h3 {
    font-size: 26px;
    line-height: 30px;
}
h4 {
    font-size: 18px;
    line-height: 24px;
}
h5 {
    font-size: 16px;
    line-height: 20px;
}
h6 {
    font-size: 14px;
    line-height: 18px;
}
ul,
ol {
    padding-right: 30px;
}
ul > li > ul,
ul > li > ol,
ol > li > ol,
ol > li > ul {
    margin: 0;
}
dt {
    font-weight: bold;
}
dd {
    margin-right: 0;
}
hr {
    box-sizing: content-box;
    height: 0;
    margin: 20px 0;
    border: 0;
    border-top: 1px solid var(--rabenu-medium-gray-color);
}
::-moz-selection {
    background: var(--rabenu-brown-color);
    color: var(--rabenu-white-color);
    text-shadow: none;
}
::selection {
    background: var(--rabenu-brown-color);
    color: var(--rabenu-white-color);
    text-shadow: none;
}
article,
aside,
details,
figure,
footer,
header,
main,
nav,
section,
summary {
    display: block;
}
audio:not([controls]) {
    display: none;
}
.visually-hidden,
[hidden],
template {
    display: none;
}
iframe {
    border: 0;
}
#header-slideshow,
.top-container {
    background-color: var(--rabenu-light-gray-color);
}
.main-content-container {
    background-color: var(--rabenu-light-gray-color);
}
.bottom-last-container {
     background-color: var(--rabenu-medium-gray-color);
}
#top-breadcrumbs {
   /* background-color: var(--rabenu-medium-gray-color);*/
    border-bottom: 1px solid var(--rabenu-medium-gray-color);
}
.uk-scope h1,
.uk-scope h2,
.uk-scope h3,
.uk-scope h4 {
    font-weight: 700 !important;
}

.align-center {
    text-align: center;
}
/* Grid */
.container {
    width: 100%;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}
.grid {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
}
body.homepage .tm-middle.grid {
   flex-direction: column;
}
body[class*="has-sidebar"] .tm-middle.grid {
   flex-direction: row;
}
body.homepage .home-top-lessons>*,
body.homepage .home-top-lessons .uk-panel .uk-grid > div:last-of-type{
    padding-left: 0 !important;
}
body.homepage .home-top-lessons .uk-panel .uk-grid .uk-first-column {
    padding-left: 25px !important;
}
body.homepage .home-top-lessons > .uk-grid-margin {
    margin-top: 15px !important;
}
[class^=grid-] > *,
[class*=" grid-"] > * {
    padding: 20px;
    max-width: 100%;
    box-sizing: border-box;
}
[class^=grid-],
[class*=" grid-"] {
    display: flex;
}
.gap {
    gap: 25px;
}
.grid-1 > * {
    width: 100%;
}
.grid-2 > * {
    width: 50%;
}
.grid-3 > * {
    width: 33.33333%;
}
.grid-4 > * {
    width: 25%;
}
.grid-5 > * {
    width: 20%;
}
.tm-sidebar-a,
.top-b-container.has-top-b-side .top-b-side-container{
    width: 25%;
    box-sizing: border-box;
}
.tm-main.has-sidebar,
.top-b-container.has-top-b-side #tm-top-b{
    width: 75%;
    box-sizing: border-box;
}

/* Nav */
.subnav {
    display: flex;
    margin: 0;
    padding: 0;
}
.subnav > * > * {
    display: inline-block;
    padding: 3px;
    font-weight: 600;
}
.subnav > * > *:hover {
    color: var(--rabenu-red-color);
}
.subnav > * {
    padding-right: 10px;
    margin-top: 3px;
    position: relative;
    list-style: none;
}
.subnav-line > :nth-child(n+2):before {
    margin-left: 10px;
    border-right: 1px solid var(--rabenu-dark-gray-color);
}
.subnav-line > :before {
    content: "";
    display: inline-block;
    height: 10px;
    vertical-align: middle;
}
.nav, .nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav li > a {
    display: block;
    text-decoration: none;
}
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
div.mod-languages {
    display: flex;
    justify-content: flex-end;
}
header div.toolbar-middle {
    text-align: center;
}
div.mod-languages ul.lang-block li,
div.mod-languages p{
    padding: 0 !important;
    margin: 0;
}
div.mod-languages ul.lang-block li a {
    padding: 0;
}

/* Breadcrumb */
.breadcrumb {
    padding: 4px 0;
    margin: 0;
    list-style: none;
}
.breadcrumb > li {
    font-size: 14px;
    vertical-align: top;
}
.breadcrumb > li,
.breadcrumb > li > a,
.breadcrumb > li > span {
    display: inline-block;
    color: var(--rabenu-black-color);
}
.breadcrumb > li:nth-child(n + 2):before {
    content: "/";
    display: inline-block;
    margin: 0 8px;
}
.breadcrumb > li:not(.active) > span {
    color: var(--rabenu-light-brown-color);
}
.breadcrumb > li > a:hover {
    color: var(--rabenu-brown-color);
}

/* Pagination */
.pagination {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 0.001px;
}
.pagination:before,
.pagination:after {
    content: "";
    display: table;
}
.pagination:after {
    clear: both;
}
.pagination > li {
    display: inline-block;
    font-size: 1rem;
    vertical-align: top;
}
.pagination > li:nth-child(n + 2) {
    margin-right: 5px;
}
.pagination > li > a,
.pagination > li > span {
    display: inline-block;
    min-width: 16px;
    padding: 3px 5px;
    line-height: 20px;
    text-decoration: none;
    box-sizing: content-box;
    text-align: center;
}
.pagination > li > a {
    background: #eee;
    color: var(--rabenu-very-dark-gray-color);
}
.pagination > li > a:hover,
.pagination > li > a:focus {
    background-color: #f5f5f5;
    color: var(--rabenu-very-dark-gray-color);
    outline: none;
}
.pagination > li > a:active {
    background-color: var(--rabenu-medium-gray-color);
    color: var(--rabenu-very-dark-gray-color);
}
.pagination > .active > span {
    background: var(--rabenu-brown-color);
    color: var(--rabenu-white-color);
}
.pagination > .disabled > span {
    background-color: #f5f5f5;
    color: var(--rabenu-dark-gray-color);
}
.pagination-left {
    text-align: right;
}
.pagination-right {
    text-align: left;
}
.pagination-container {
    color: var(--rabenu-dark-gray-color);
    padding: 8px;
    text-align: center;
    margin-top: 20px;
}


/*--------------------------------------------------------------
# Positions
--------------------------------------------------------------*/

/* Top */
.tm-toolbar {
    background-color: rgba(235,235,235,0.6);
    padding: 6px 5px 7px 15px;
    font-size: 16px;
    line-height: 19px;
}
div.mod-languages ul {
    display: flex;
}
.top-languages {
    padding: 2px 5px 0 0;
}
.top-languages div.mod-languages ul li {
    margin: 0 !important;
}
.top-languages div.mod-languages ul li a {
    display: block;
    font-size: 0;
    line-height: 0;
    box-sizing: border-box;
    transition-duration: 0.5s;
    padding: 0;
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-size: contain;
}
html[dir="rtl"] .top-languages div.mod-languages ul li a {
    background-image: url("../images/language-us.png");
}
html[dir="ltr"] .top-languages div.mod-languages ul li a {
    background-image: url("../images/language-il.png");
}
.tm-toolbar .uk-button {
    font-size: 16px;
    padding: 2px 13px;
}
.uk-button:not(:disabled) {
    cursor: pointer;
}
a.orange-button,
#tm-bottom-d .uk-button,
.toolbar-middle a {
    background-color: var(--rabenu-brown-color);
    color: var(--rabenu-white-color);
    display: inline-block;
    line-height: 30px;
    padding: 5px 15px;
    min-height: 30px;
}
a.orange-button:hover,
#tm-bottom-d .uk-button-success,
.toolbar-middle a.uk-button-success,
.toolbar-middle a:hover{
    background-color: var(--rabenu-red-color);
}
#tm-bottom-d .uk-button-success:hover,
.toolbar-middle a.uk-button-success:hover {
    background-color: var(--rabenu-brown-color);
}

/* Header */
.tm-headerbar {
    background: url("../images/headerbar.jpg") repeat 0 0;
    border-top: 1px solid var(--rabenu-medium-gray-color);
    border-bottom: 1px solid var(--rabenu-medium-gray-color);
    padding: 10px 0 0 0;
}
.tm-headerbar a.tm-logo {
    display: flex;
    align-items: center;
    width: 60%;
    color: var(--rabenu-black-color);
    font-size: 16px;
    line-height: 1.1em;
}
.tm-headerbar a.tm-logo:hover,
.tm-headerbar a.tm-logo:hover h3,
.tm-headerbar a.tm-logo:hover h4 {
    color: var(--rabenu-red-color);
    text-decoration: none;
}
.tm-headerbar a.tm-logo > div {
    display: flex;
    gap: 20px;
}
.tm-headerbar a.tm-logo img {
    margin: 0 10px 10px 0;
}
html[dir="rtl"] .tm-headerbar a.tm-logo img {
    margin: 0 0 10px 10px;
}
.tm-headerbar a.tm-logo h3 {
    font-size: 33px;
    line-height: 30px;
    color: var(--rabenu-black-color);
}
.tm-headerbar a.tm-logo h4 {
    margin: 0 0 3px 0;
    font-size: 26px;
    line-height: 28px;
    color: var(--rabenu-brown-color);
}
#top-search {
    margin: 40px 0 0 45px;
    width: 250px;
}
.search-field{
    box-sizing: border-box;
    margin: 0;
    border-radius: 0;
    font: inherit;
    color: var(--rabenu-very-dark-gray-color);
    -webkit-appearance: none;
    width: 100%;
    height: 35px;
    padding: 0 5px 0 35px;
    border: 1px solid #959595;
    background: var(--rabenu-white-color);
    vertical-align: middle;
}
.search-field:-ms-input-placeholder,
search-field::-moz-placeholder,
.search-field::-webkit-input-placeholder {
    color: var(--rabenu-dark-gray-color) !important;
}
.search-field:focus {
    outline: 0;
}
.search-field:focus,
.search.uk-active .uk-search-field {
    border: 1px solid var(--rabenu-red-color);
}
.search {
    display: inline-block;
    position: relative;
    margin: 0;
}
.search:before {
    content: "\f002";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 35px;
    border-right: 1px dotted #959595;
    line-height: 35px;
    text-align: center;
    font-family: FontAwesome;
    font-size: 18px;
    z-index: 3;
    color: #b2b2b2;
}
/* Main Navigation */
.navbar-nav > li:hover > .dropdown {
    display: block;
}
.nav-navbar > li > a {
    color: var(--rabenu-very-dark-gray-color);
}
.nav-navbar > li > a:hover,
.nav-navbar > li > a:focus {
    background: var(--rabenu-brown-color);
    color: var(--rabenu-white-color);
    outline: none;
}
.nav-navbar .nav-header {
    color: var(--rabenu-dark-gray-color);
}
.nav-navbar .nav-divider {
    border-top: 1px solid var(--rabenu-medium-gray-color);
}
.nav-navbar ul a {
    color: var(--rabenu-brown-color);
}
.nav-navbar ul a:hover {
     color: var(--rabenu-red-color);
}
.navbar.scope {
    width: 100%;
}
.navbar.scope ul.navbar-nav {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    list-style: none;
}
ul.subnav {
    padding: 0;
    margin-bottom: 0;
}
ul.nav {
    list-style: none;
    padding: 0 10px;
}
.navbar-nav > li {
    position: relative;
}
.navbar-nav > li > a {
    display: block;
    box-sizing: border-box;
    text-decoration: none;
    height: 30px;
    padding: 0 14px;
    line-height: 30px;
    color: var(--rabenu-black-color) !important;
    font-size: 18px;
    font-weight: normal;
    border-left: 1px dotted var(--rabenu-medium-gray-color);
}
.navbar-nav > li > a:hover {
    color: var(--rabenu-brown-color) !important;
}
.navbar-nav > li:first-child > a {
    padding-right: 0;
}
.navbar-nav > li:last-child > a {
    border-left: 0;
}
.navbar-nav > li > a[href="#"] {
    cursor: text;
}
.navbar-nav > li:hover > a,
.navbar-nav > li > a:focus,
.navbar-nav > li.open > a {
    color: var(--rabenu-brown-color);
    outline: none;
}
.navbar-nav > li > a:active {
    color: var(--rabenu-brown-color);
}
.navbar-nav > li.active > a {
    color: var(--rabenu-brown-color) !important;
}
.tm-navbar .scope .dropdown {
    padding: 15px 0;
    display: none;
    position: absolute;
    z-index: 1020;
    box-sizing: border-box;
    min-width: 200px;
    background: var(--rabenu-white-color);
    color: #666;
    box-shadow: 0 5px 12px rgb(0 0 0 / 15%);
}
.tm-navbar {
    padding: 9px 15px;
    background: none var(--rabenu-white-color);
    border-bottom: 1px solid var(--rabenu-medium-gray-color);
}
.nav-dropdown > li > a {
    color: var(--rabenu-very-dark-gray-color);
}
.tm-navbar .scope .dropdown-nav {
    padding: 0;
    margin: 0;
}
.tm-navbar .scope .dropdown-nav>li>a {
    font-size: 16px;
    color: var(--rabenu-very-dark-gray-color);
    padding: 5px 25px !important;
}
.tm-navbar .scope .dropdown-nav>li>a:hover {
    color: var(--rabenu-white-color);
}
.tm-navbar .scope ::selection {
    background: var(--rabenu-brown-color);
}
.tm-navbar .navbar-nav > li > a {
    text-decoration: none;
}
.tm-navbar .scope .nav > li > a {
    padding: 8px 25px;
    width: 100%;
    box-sizing: border-box;
    display: inline-block;
    border-bottom: 1px solid var(--rabenu-light-gray-color);
}
.tm-navbar .scope .dropdown {
    padding: 15px 0;
}
.tm-navbar .dropdown-nav > li > a:hover,
.tm-navbar .dropdown-nav > li > a:focus,
.nav-dropdown > li > a:hover,
.nav-dropdown > li > a:focus {
    background: var(--rabenu-brown-color);
    color: var(--rabenu-white-color);
    outline: none;
}
.nav-dropdown .nav-header {
    color: var(--rabenu-dark-gray-color);
}
.nav-dropdown .nav-divider {
    border-top: 1px solid var(--rabenu-medium-gray-color);
}
.nav-dropdown ul a {
    color: var(--rabenu-brown-color);
}
.nav-dropdown ul a:hover {
    color: var(--rabenu-red-color);
}




/* Logo Small */
.navbar-content {
    background: url("../images/headerbar.jpg") repeat 0 0;
    padding: 0;
    border-bottom: 7px solid var(--rabenu-brown-color);
}
.navbar-content a.tm-logo-small {
    display: flex;
    align-items: center;
    padding: 0 15px 0 0;
    margin: 0;
    font-size: 16px;
    line-height: 21px;
    color: var(--rabenu-black-color);
    letter-spacing: normal;
}
html[dir="ltr"] .navbar-content a.tm-logo-small {
    padding: 0 0 0 15px;
}
html[dir="ltr"] a.tm-logo-small .logo-rabi-small {
    text-align: right;
}
a.tm-logo-small .logo-content {
    display: inline-block;
    width: 75%;
    padding: 20px 0;
}
a.tm-logo-small .logo-rabi-small {
    display: inline-block;
    width: 32%;
    text-align: left;
    align-self: end;
}
.navbar-content a.tm-logo-small h3 {
    margin: 0;
    font-size: 26px;
    line-height: 24px;
    color: var(--rabenu-black-color);
}
.navbar-content a.tm-logo-small h4 {
    margin: 0;
    font-size: 22px;
    line-height: 24px;
    color: var(--rabenu-brown-color);
}
.mod-custom p:last-of-type {
    margin: 0;
}
/* Header Slideshow */
.uk-scope .uk-slidenav-previous {
    left: auto !important;
    right: 0 !important;
}
.uk-scope .uk-slidenav-next {
    right: auto !important;
    left: 0 !important;
}
#header-slideshow .uk-slider ul.uk-slider-items > li > div {
    border-radius: 0;
}

/* Top A */
h3.module-header,
.title-above-grid h3,
div.itemListCategory h1,
div.itemHeader h1.itemTitle,
div.componentheading,
#system .title,
.discuss-form legend,
#content h1.title,
.bfPageIntro h1,
div#ed .discuss-component-title,
.psalm-page .psalm-component-title,
#tm-content .com-finder fieldset label,
div#ed .discuss-item.discussQuestion .discuss-item-hd .discuss-post-title,
div#ed .ed-search-wrapper h2,
.latest_and_comments h3,
#ed .o-card--ed-active-tag h2,
#ed .ed-tags-wrapper h2{
    background-image: url("../images/title-arow.svg");
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: 80px ;
    display: block;
    width: 100%;
    text-align: center;
    color: var(--rabenu-brown-color);
    font-size: 28px !important;
    line-height: 34px !important;
    padding-bottom: 22px !important;
    margin-bottom: 20px !important;
    position: relative;
}
h3.module-header::before,
.title-above-grid h3::before,
div.itemListCategory h1::before,
div.itemHeader h1.itemTitle::before,
div.componentheading::before,
#system .title::before,
.discuss-form legend::before,
#content h1.title::before,
.bfPageIntro h1::before,
div#ed .discuss-component-title::before,
.psalm-page .psalm-component-title::before,
#tm-content .com-finder fieldset label::before,
div#ed .discuss-item.discussQuestion .discuss-item-hd .discuss-post-title::before,
div#ed .ed-search-wrapper h2::before,
.latest_and_comments h3::before,
#ed .o-card--ed-active-tag h2::before,
#ed .ed-tags-wrapper h2::before,
h3.module-header::after,
.title-above-grid h3::after,
div.itemListCategory h1::after,
div.itemHeader h1.itemTitle::after,
div.componentheading::after,
#system .title::after,
.discuss-form legend::after,
#content h1.title::after,
.bfPageIntro h1::after,
div#ed .discuss-component-title::after,
.psalm-page .psalm-component-title::after,
#tm-content .com-finder fieldset label::after,
div#ed .discuss-item.discussQuestion .discuss-item-hd .discuss-post-title::after,
div#ed .ed-search-wrapper h2::after,
.latest_and_comments h3::after,
#ed .o-card--ed-active-tag h2::after,
#ed .ed-tags-wrapper h2::after {
    content: "";
    width: calc(50% - 48px);
    height: 1px;
    line-height: 0;
    background-color: var(--rabenu-brown-color);
    display: block;
    position: absolute;
    bottom: 9px;
    left: 0;
}
h3.module-header::after,
.title-above-grid h3::after,
div.itemListCategory h1::after,
div.itemHeader h1.itemTitle::after,
div.componentheading::after,
#system .title::after,
.discuss-form legend::after,
#content h1.title::after,
.bfPageIntro h1::after,
div#ed .discuss-component-title::after,
.psalm-page .psalm-component-title::after,
#tm-content .com-finder fieldset label::after,
div#ed .discuss-item.discussQuestion .discuss-item-hd .discuss-post-title::after,
div#ed .ed-search-wrapper h2::after,
.latest_and_comments h3::after,
#ed .o-card--ed-active-tag h2::after,
#ed .ed-tags-wrapper h2::after {
    right: 0;
    left: auto;
}
.tm-sidebar-a h3.module-header{
     background-size: 65px ;
}
.tm-sidebar-a h3.module-header::before,
.tm-sidebar-a h3.module-header::after,
.top-b-side-container h3.module-header::before,
.top-b-side-container h3.module-header::after{
    width: calc(50% - 38px);
    bottom: 8px;
}
.fancy-title .module-header  {
    font-size: 32px;
    line-height: 40px;
    color: var(--rabenu-brown-color);
}
/* Top B */
#tm-main-top .custom > .uk-grid,
#tm-main-top-b .custom > .uk-grid {
    flex-wrap: wrap;
    display: flex;
    gap: 25px;
    row-gap: 20px;
}
#tm-main-top .custom > .uk-grid > .uk-width-small-1-3,
#tm-main-top-b .custom > .uk-grid > .uk-width-small-1-3 {
    width: calc((100% - 50px) / 3);
    margin-bottom: 10px;
}
div.ed-mod--recent-discussions .o-card {
    border: 0 !important;
}
div#ed.ed-mod--recent-replies .ed-mod-card div.ed-mod-card__body .o-avatar {
    display: none;
}
div#ed.ed-mod--recent-replies .ed-mod-card div.ed-mod-card__body > div,
div#ed.ed-mod--recent-discussions .ed-mod-card div.ed-mod-card__body > div,
div.discuss-mod.most-replies-discussions .list-item > div{
    padding: 25px;
    background-color: var(--rabenu-very-light-gray-color) !important;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 20px;
    border-radius: 0 20px;
}
div#ed.ed-mod--recent-replies .ed-mod-card div.ed-mod-card__body > div:nth-child(odd),
div#ed.ed-mod--recent-discussions .ed-mod-card div.ed-mod-card__body > div:nth-child(odd),
div.discuss-mod.most-replies-discussions .list-item > div:nth-child(odd){
    background-color: var(--rabenu-light-blue-color) !important;
}
div#ed.ed-mod--recent-replies .ed-mod-card div.ed-mod-card__body .o-card__body,
div.discuss-mod.most-replies-discussions .item-stat + .item-story,
div.discuss-mod.recent-replies .item .story,
div.ed-mod--recent-discussions .ed-mod-card  .o-card__body{
    background-image: url("../images/icon-qa.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 1px) 50%;
    background-size: 45px;
    padding: 8px 55px 0 0 !important;
    min-height: 50px;
    margin: 0;
    font-size: 16px;
}
div.discuss-mod.discuss-categories img.avatar {
    height: 55px;
    width: 55px;
}
div.discuss-mod .item-story .item-title,
div.discuss-mod.recent-replies .item-title,
div.ed-mod--recent-discussions .ed-mod-card  > div h1,
.ed-mod--recent-replies h1{
    font-size: 20px;
    line-height: 21px;
    font-weight: 600;
    color: inherit;
}
div.discuss-mod .item-story {
    padding-top: 8px;
}
div.discuss-mod.discuss-categories .item-avatar + .item-story {
    margin-right: 70px;
}
#ed .discuss-story-bd .label-unread {
    display: none;
}
.discussPostsList .categoryFilters {
    display: none;
}
.discuss-view-categories .discuss-category-header {
    margin-bottom: 30px;
}
div.discuss-mod.most-replies-discussions .item-title + .item-meta {
    margin-top: 0;
}

div.ed-mod--recent-discussions .o-card__body > a {
    margin-top: 0 !important;
}
.tm-sidebar-a div.ed-mod--recent-discussions .ed-mod-card > div h1,
.tm-sidebar-a .tm-sidebar-a div.discuss-mod.most-replies-discussions .item-story .item-title {
    font-size: 16px;
}
.tm-sidebar-a div#ed.ed-mod--recent-discussions .ed-mod-card div.ed-mod-card__body > div,
.tm-sidebar-a div.discuss-mod.most-replies-discussions .list-item > div{
    padding: 0 !important;
    background-color: transparent!important;
    margin-top: 0;
    margin-bottom: 0;
}
div.ed-mod--recent-discussions .ed-mod-card > div,
.tm-sidebar-a div.discuss-mod.most-replies-discussions .list-item > div{
    padding: 0;
    background-color: transparent !important;
}
div.ed-mod--recent-discussions .ed-mod-card .o-meta,
div.ed-mod--recent-discussions .ed-mod-card .o-meta div{
    margin: 0 !important;
}
div.ed-mod--recent-discussions .ed-mod-card .o-meta,
.tm-sidebar-a div.discuss-mod.most-replies-discussions .item-title + .item-meta {
    font-size: 14px !important;
}
div.discuss-mod.most-replies-discussions .item-stat + .item-story {
    padding-top: 0;
}
div.ed-mod--recent-discussions .ed-mod-card .o-meta .ed-post-status-bar,
div.discuss-mod.most-replies-discussions .item-stat {
    display: none !important;
}

div.ed-mod--recent-discussions .ed-mod-card .o-meta a.si-link > div{
    width: auto !important;
    padding-left: 2px !important;
}
div.ed-mod--recent-discussions .ed-mod-card .o-meta a.si-link > div::before{
    content: "קטגוריה:";
}
div.ed-mod--recent-discussions .ed-mod-card .o-meta a.si-link > div img{
    display: none !important;
}
.discuss-mod.discuss-ask {
    background: none transparent;
    padding: 0px !important;
}
.discuss-mod.discuss-ask a {
    background: none var(--rabenu-brown-color);
    color: var(--rabenu-white-color);
    border: 0;
}
.discuss-mod.discuss-ask a:hover {
    background: none var(--rabenu-red-color);
}

/* Full Bottom */
.full-bottom-container {
    background: url("../images/full-middle.jpg") 50% 50% no-repeat transparent;
    background-size: cover;
    padding: 40px 25px;
    font-size: 18px;
}

.full-bottom-container h3.module-header {
    background-image: none;
    color: var(--rabenu-red-color);
    padding-bottom: 0 !important;
}
.full-bottom-container h3.module-header::before,
.full-bottom-container h3.module-header::after{
    display: none;
}


.full-bottom-container .module-header  {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}
.mod-blessings {
    text-align: center;
    overflow: hidden;
}
/* Footer */
#footer-nav {
    background: none var(--rabenu-red-color);
    padding: 15px 0;
}
#footer-nav .nav {
    text-align: center;
}
#footer-nav .nav > li > a {
    padding: 5px 10px;
}
#footer-nav .nav-side > li.active > a,
#footer-nav .nav-side > li a:hover,
#tm-footer a:hover,
#tm-footer .nav-side > li.active > a {
    background: none transparent;
    color: #f8cc7b;
}
#footer-nav ul li {
    display: inline-block;
}
#tm-footer {
    background: none #730001;
    color: var(--rabenu-white-color);
    font-size: 14px;
    line-height: 17px;
}
#tm-footer a {
    color: var(--rabenu-white-color);
}
#tm-footer-block {
    padding: 25px 0;
}
#tm-footer-block > div {
    padding: 0;
}
#tm-footer-block > div.logo {
    text-align: left;
}
html[dir="ltr"] #tm-footer-block > div.logo {
    text-align: right;
}
#tm-footer-block a {
    padding: 0;
}
#tm-footer .uk-panel-title {
    margin-top: 0;
    margin-bottom: 5px;
    color: var(--rabenu-white-color);
}
.position-relative {
    position: relative;
}
#footer-credit {
    padding-bottom: 15px;
    font-size: 14px;
}
.tm-footer {
    position: relative;
}
.tm-footer .uk-panel + .uk-panel {
    margin-top: 25px;
}
.tm-totop-scroller {
    display: block;
    position: absolute;
    top: 0;
    right: 8px;
    z-index: 1000;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 16px;
    color: var(--rabenu-very-dark-gray-color);
    text-align: center;
    -webkit-transition: all linear 0.05s;
    transition: all linear 0.05s;
}
.tm-totop-scroller:after {
    content: "\f077";
    font-family: FontAwesome;
}
.tm-totop-scroller:hover,
.tm-totop-scroller:focus {
    color: #777;
    font-size: 18px;
    outline: none;
    text-decoration: none;
}
.tm-totop-scroller:active {
    color: #111;
    font-size: 11px;
}
#tm-footer .module-header  {
    font-size: 22px !important;
    text-align: right;
    margin-top: 0;
    margin-bottom: 0 !important;
    padding: 0 !important;
    color: var(--rabenu-white-color);
    background-image: none;
}
#tm-footer h3.module-header::before,
#tm-footer h3.module-header::after{
    display: none;
}
html[dir="ltr"] #tm-footer .module-header  {
    text-align: left;
}
.module-header  {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 24px;
    text-transform: none;
}
.uk-scope .artbit-grid-overlay-text .atbit-grid-overlay-image {
    overflow: hidden;
    margin-bottom: 0 !important;
}
a img{
    transition: .3s ease-out !important;
}
a img:hover{
   transform: scale(1.03,1.03);
	transition: all 0.3s ease-out !important;
}
.uk-scope .artbit-grid-overlay-text .artbit-grid-overlay-text-title-and-meta {
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: var(--rabenu-white-color);
    padding: 15px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 30%;
    background: -moz-linear-gradient( top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100% );
    background: -webkit-linear-gradient( top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100% );
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100% );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000',endColorstr='#000000',GradientType=0 );
}
.uk-scope .artbit-grid-overlay-text .artbit-grid-overlay-text-title-and-meta h3 {
    margin: 0;
    line-height: 1em !important;
}
.uk-scope .artbit-grid-overlay-text .artbit-grid-overlay-text-title-and-meta h3 a {
    display: block;
    font-size: 18px;
    line-height: 1em !important;
    color: var(--rabenu-white-color) !important;
}
.uk-scope .artbit-grid-overlay-text .artbit-grid-overlay-text-title-and-meta,
.uk-scope .artbit-grid-overlay-text .artbit-grid-overlay-text-title-and-meta a{
    font-size: 14px;
    line-height: 18px;
    color: var(--rabenu-white-color);;
}
.uk-scope .artbit-grid-overlay-text .artbit-grid-overlay-cover-link{
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
}
.artbit-standard-grid .artbit-standard-grid-content .artbit-standard-grid-title {
    font-weight: 600;
}
.artbit-standard-grid .artbit-standard-grid-content p {
   margin: 0;
}
/*STYLES FOR ARTBIT STANDARD GRID OF 1 COLUMN WITH IMAGE ON THE SIDE*/
.artbit-standard-grid.uk-child-width-1-1:not([class*="@"]) div.uk-first-column{
    padding: 0 !important;
}
.artbit-standard-grid.uk-child-width-1-1:not([class*="@"]) div.uk-first-column .uk-grid .uk-first-column + div{
    padding: 0 15px 0 0 !important;
}
.artbit-standard-grid.uk-child-width-1-1:not([class*="@"]).uk-grid-medium>.uk-grid-margin {
    margin-top: 20px;
}
.artbit-standard-grid.uk-child-width-1-1:not([class*="@"]) .artbit-standard-grid-content {
   /* font-size: smaller;*/
    line-height:  1.5em;
}
/*END STYLES FOR ARTBIT STANDARD GRID OF 1 COLUMN WITH IMAGE ON THE SIDE*/


/*STYLES FOR ARTBIT STANDARD GRID OF 1 COLUMN WITH IMAGE ON TOP*/
.artbit-standard-grid.uk-child-width-1-1 .uk-card {
    overflow: hidden;
}
/* END STYLES FOR ARTBIT STANDARD GRID OF 1 COLUMN WITH IMAGE ON TOP*/
.artbit-standard-grid,
.artbit-standard-grid h1,
.artbit-standard-grid h2,
.artbit-standard-grid h3,
.artbit-standard-grid h4,
.artbit-standard-grid .uk-grid {
    margin: 0 !important;
}
.artbit-standard-grid .artbit-standard-grid-meta{
    font-size: 16px;
    line-height: 18px;
     margin-bottom: 5px;

}
.artbit-standard-grid .uk-panel{
    padding: 0 !important;
    border: 0;
}
.artbit-standard-grid.uk-child-width-1-1 .artbit-standard-grid-media{
    margin-bottom: 5px;
}
.round-image img {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}
.uk-grid {
    margin-right: 0;
}
/*--------------------------------------------------------------
# Component Area
--------------------------------------------------------------*/
/* Main Component Area */
.rounded-container,
.top-a-container,
.tm-main > section,
.tm-main > div > div,
.tm-main .com-content-category-blog,
.tm-main .com-content-article,
.tm-main .itemListSubCategories,
#tm-content #ed,
#tm-content .com-finder,
#psalm-home-page,
#psalm-item-page,
#psalm-blessing-page{
    background: none var(--rabenu-white-color);;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 0 20px;
}
.tm-main {
    max-width: 100%;
}
html[dir="ltr"] body:not(.tm-isblog) .tm-main #tm-content,
html[dir="ltr"] body:not(.homepage) .tm-main > section:not(#main-bottom-no-bg),
html[dir="ltr"] .tm-sidebar-a > *,
html[dir="ltr"] .top-a-container,
#tm-top-b,
.top-b-side-container,
html[dir="ltr"] #tm-top-b > div,
html[dir="ltr"] .bottom-b-container,
html[dir="ltr"] .tm-bottom-c > div,
html[dir="ltr"] .tm-bottom-d > div,
html[dir="ltr"] .bottom-a-container,
html[dir="ltr"] .bottom-b-container,
html[dir="ltr"] .tm-bottom-last > div {
    border-radius: 20px 0;
}
body:not(.tm-isblog) .tm-main #tm-content {
    padding-bottom: 20px;
}
/* Sidebar */
.tm-sidebar-a,
.top-b-side-container{
    font-size: 16px;
    line-height: 19px;
}
.tm-sidebar-a > *{
    background: var(--rabenu-white-color);;
    padding: 25px;
    border-radius: 0 20px;
}
.tm-sidebar-a > * + *{
    margin-top: 35px;
}
.tm-sidebar-a h3.module-header{
    font-size: 21px !important;
    padding-bottom: 18px !important;
}
.side-images-module {
    background-color: var(--rabenu-white-color);;
}
.side-images-module .custom > div {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}
.tm-sidebar-a .subjects ul.nav li:last-child {
    margin-top: 10px;
}
.tm-sidebar-a .subjects ul.nav li:last-child a {
    display: block;
     background: none var(--rabenu-red-color);
    color: var(--rabenu-white-color);;
    text-align: center;
    padding: 8px;
    font-size: 16px !important;
}
.tm-sidebar-a .subjects ul.nav li:last-child a:hover {
    background: none var(--rabenu-brown-color) !important;
    color: var(--rabenu-white-color) !important;
}
.nav-side > li > a {
    color: var(--rabenu-very-dark-gray-color);
}
.nav-side > li > a:hover,
.nav-side > li > a:focus {
    outline: none;
}
.tm-sidebar-a .module-header,
.top-b-side-container .module-header{
    margin-bottom: 5px;
}
body .tm-sidebar-a #discuss-mod-search .discuss-searchbar {
    background: none transparent;
    border: 0;
    border-radius: 0;
    height: auto;
    padding: 0;
    position: relative;
}
body .tm-sidebar-a #discuss-mod-search .discuss-searchbar .input-searchbar {
    position: static;
    padding: 5px !important;
    height: 35px;
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 0;
}
body .tm-sidebar-a #discuss-mod-search .discuss-searchbar {
    background: none transparent;
    border: 0;
    border-radius: 0;
    height: auto;
    padding: 0;
    position: relative;
}
body .tm-sidebar-a #discuss-mod-search .discuss-searchbar .discuss-avatar {
    display: none;
}
body .tm-sidebar-a #discuss-mod-search .discuss-searchbar .btn-searchbar,
body .tm-sidebar-a #discuss-mod-search .discuss-searchbar.narrow .btn-searchbar {
    position: static;
    padding: 8px 4px;
    display: block;
    width: 100%;
    margin-top: 10px;
    border: 0;
}
body .tm-sidebar-a #discuss-mod-search .discuss-searchbar .btn-ask {
    display: none;
}
body .tm-sidebar-a #discuss-mod-search .discuss-searchbar.narrow .discuss-searchbar--left,
body .tm-sidebar-a #discuss-mod-search .discuss-searchbar.narrow .discuss-searchbar--center {
    height: auto;
}
body .tm-sidebar-a #discuss-mod-search form {
    margin: 0;
}
body .tm-sidebar-a #discuss-mod-search .discuss-searchbar.narrow .btn-ask {
    height: 38px;
    margin-top: 10px;
    line-height: 28px;
    padding: 5px;
}
/* Content Articles */
.blog-items .blog-item {
    background: var(--rabenu-very-light-gray-color);
    padding: 15px;
    border-radius: 0 20px;
}
.itemListSubCategories .masonry-3 .subCategoryContainer,
.blog-items.masonry-3 .blog-item {
    flex-grow: 1;
    width: calc((100% - 40px) / 3);
    box-sizing: border-box;
    max-width: 33%;
    margin-bottom: 30px;
}
.blog-items.masonry-2 .blog-item {
    flex-grow: 1;
    width: calc((100% - 20px) / 2);
    box-sizing: border-box;
    max-width: 50%;
}
.itemListSubCategories .masonry-3,
.blog-items.masonry-2,
.blog-items.masonry-3 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
div.subCategory h2 {
    font-size: 18px;
    line-height: 16px;
    margin-top: 5px;
}
.subCategory h2 a {
    color: var(--rabenu-black-color);
}
.subCategory h2 a span {
    font-size: 16px;
    color: #aaa;
}
div.subCategory a.subCategoryImage,
div.subCategory a.subCategoryImage:hover {
    text-align: center;
    display: block;
}
div.subCategory {
    background: none transparent;
    border: 0;
    text-align: center;
}
.itemListView.shows .itemList {
    padding-top: 20px;
}
h3.catItemTitle a,
h2.genericItemTitle a,
h2.tagItemTitle a,
h2.userItemTitle a,
h3.userItemTitle a {
    color: var(--rabenu-black-color);
}
#itemListPrimary .catItemTitle,
#itemListSecondary .catItemTitle {
    font-size: 18px;
    line-height: 26px;
    margin: 10px 0 0 0;
}
.date_hits_contener {
    display: block;
    margin: 7px 0;
    font-size: 14px;
    line-height: 14px;
}
div.itemView {
    padding: 8px 0 24px 0;
    margin: 0 0 24px 0;
}
div.itemView div.item_details {
    display: flex;
    background-color: var(--rabenu-very-light-gray-color);
    padding: 7px 10px;
    font-size: 14px;
    margin-bottom: 15px;
}
div.itemView div.item_details .itemAuthor,
div.itemView div.item_details .itemCategory {
    padding: 0 0 0 2.5%;
    border: 0;
}
div.itemView div.item_details a,
div.itemView div.item_details .itemDateCreated,
div.itemTagsBlock ul.itemTags li a {
    color: #741415;
}
div.itemBody {
    padding: 8px 0;
    margin: 0;
}
div.itemBody .itemFullText > p {
    margin-top: 0;
}
html[dir="ltr"] div.itemImageBlock {
    float: right;
    margin: 0 0 20px 20px;
}
div.itemImageBlock {
    width: 40%;
    float: left;
    padding: 0;
    margin: 0 20px 20px 0;
}
span.itemImage {
    display: block;
    text-align: center;
    margin: 0 0 8px 0;
}
.itemImageCaption {
    color: #666;
    float: left;
    display: block;
    font-size: 11px;
}
span.itemImage img {
    border: 1px solid var(--rabenu-medium-gray-color);
    padding: 8px;
    border-radius: 0 20px;
}
div.itemImageBlock::after {
    content: "";
    display: block;
    clear: both;
}
div.itemLinks {
    margin: 16px 0 40px 0;
    padding: 0;
}
.item_param {
    display: flex;
    padding: 5px 0;
    font-size: 14px;
    border-top: 1px solid var(--rabenu-medium-gray-color);
    border-bottom: 1px solid var(--rabenu-medium-gray-color);
}
div.itemTagsBlock,
span.itemHits {
    padding: 4px 0 0 3%;
    border: 0;
}
div.itemTagsBlock span {
    font-weight: bold;
    color: var(--rabenu-dark-gray-color);
    padding: 0 4px 0 0;
}
div.itemTagsBlock ul.itemTags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline;
}
div.itemTagsBlock ul.itemTags li {
    display: inline;
    list-style: none;
    padding: 0 4px 0 0;
    margin: 0;
    text-align: center;
}
div.itemTagsBlock ul.itemTags li a {
    font-weight: bold;
}
.social-buttons {
    margin-left: auto;
}
a.orange_but_with_border {
    background: none var(--rabenu-brown-color);
    text-align: center;
    color: var(--rabenu-white-color);
    line-height: 22px;
    padding: 4px 12px !important;
    display: inline-block;
    margin: 0 0 5px;
}
.social-buttons .s2s_contenedor {
    margin: 0;
}
.social-buttons .s2s_btn {
    margin: 0;
}
.latest_and_comments {
    display: flex;
    flex-direction: column;
}
div.itemView div.itemRelated,
div.itemView div.comments{
    margin-bottom: 25px;
}
div.itemView div.itemAuthorLatest ul,
div.itemView div.itemRelated ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    list-style-type: none;
    padding: 0;
}
div.itemView div.itemAuthorLatest ul li,
div.itemView div.itemRelated ul li {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    width: 31%;
    margin-bottom: 20px;
    overflow: hidden;
}
div.itemView div.itemAuthorLatest ul li:last-of-type,
div.itemView div.itemRelated ul li:last-of-type {
    margin-left: 0;
}
div.itemView div.itemAuthorLatest a.itemRelImageLink,
div.itemView div.itemRelated a.itemRelImageLink {
    display: block;
    margin-bottom: 5px;
    max-height: 147px;
    overflow: hidden;
}
p.readmore {
    margin: 5px 0;
}
.donation-price::after {
    content: "₪";
    margin-right: -5px;
}
.donation-price {
    display: inline-block;
    font-size: 24px;
    color: #741415;
}
#lightbox {
    position:fixed;
    top:20px;
    left:0;
    width:100%;
    height:100%;
    max-height: 90vh;
    text-align:center;
}
#lightbox img {
    box-shadow:0 0 25px #111;
    -webkit-box-shadow:0 0 25px #111;
    -moz-box-shadow:0 0 25px #111;
    max-width:940px;
}
div.itemView div.itemAuthorLatest .item_reilated_text_content,
div.itemView div.itemRelated .item_reilated_text_content {
    font-size: 14px;
    line-height: 17px;
}
div.itemView div.itemAuthorLatest a.itemRelTitle,
div.itemView div.itemRelated a.itemRelTitle,
div.itemView div.itemAuthorLatest ul li {
    font-size: 16px;
}
#main-bottom-no-bg > * {
    padding: 0;
}
.popup-window > div > button {
    border: 0 none;
    width: 30px;
    height: 30px;
    border-radius: 20px;
    background-color: var(--rabenu-brown-color);
    right: 0;
    top: -40px;
    cursor: pointer;
    position: absolute;
}
.popup-window > div > button:hover {
    background-color: var(--rabenu-red-color);
}
.popup-window > div > button svg line {
    stroke: var(--rabenu-white-color);
}
.popup-window > div {
    width: min(80vw, 800px);
    left: max(10vw, calc((100vw - 800px)/2));
    max-height: 90vh;
    top: 10vh;
    position: absolute;
}
.popup-window {
    display: none;
    margin: 0 auto;
    position: fixed;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255, 0.8);
}
.downloadLinks {
    display: flex;
}
.downloadLinks .linkMP4 {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid var(--rabenu-red-color);
}
.downloadLinks a {
    color: var(--rabenu-red-color);
}
.downloadLinks .linkMP3 {
    padding-left: 10px;
    border-left: 1px solid var(--rabenu-red-color);
}
.downloadLinks .popup-media-link {
    margin-right: 10px;
}
.itemVideoEmbedded.floating .close-floating-video {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -26px;
    right: 0;
    width: 25px;
    height: 25px;
    border: 0;
    background-color: var(--rabenu-red-color);
    border-radius: 50%;
    cursor: pointer;
}
.itemVideoEmbedded.floating .close-floating-video:hover {
    background-color: var(--rabenu-very-dark-gray-color);
}
.itemVideoEmbedded.floating .close-floating-video svg line {
    stroke: #ffffff;
}
.close-floating-video {
    display: none;
}
.itemVideoEmbedded {
	position: relative;
	padding-bottom: 56.25%;
   /* transition: right 0.2s linear;
    right: -55vh;*/
}
.itemVideoEmbedded iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.itemVideoEmbedded.floating {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 54vh;
    max-width: 50vw;
    max-height: 40vw;
    z-index: 99999;
    height: 32vh;
}
.itemVideoBlock {
    margin: 20px 0 10px 0;
}
.itemVideoBlock .plyr--full-ui input[type=range] {
    color: var(--rabenu-brown-color);
}
.itemVideoBlock .plyr__control--overlaid {
    background: rgba(199, 126, 58, .8);
}
.itemVideoBlock .plyr--video .plyr__control.plyr__tab-focus,
.itemVideoBlock .plyr--video .plyr__control:hover,
.itemVideoBlock .plyr--video .plyr__control[aria-expanded=true] {
    background: var(--rabenu-brown-color);
}
.itemVideoBlock .plyr__control.plyr__tab-focus {
    box-shadow: 0 0 0 5px rgba(199, 126, 58, .5);
}
.itemVideoBlock .plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
    background: var(--rabenu-brown-color);
}
.article-visibility-related  .itemLinks {
    display: none;
}
/* Full Middle */
#full-middle {
    background: none var(--rabenu-white-color);
    padding: 40px 30px 50px 30px;
    font-size: 18px;
}
.top-container {
    padding: 0 30px 20px 30px;
}
.main-content-container,
.bottom-last-container {
    padding: 50px 30px;
}
.uk-scope a.uk-button-default,
.category-preview .mod-custom a,
a.pagination-load-more,
#tm-bottom-c .mod-custom a,
.tm-sidebar-a form input[type="submit"],
.com-finder fieldset .input-group button,
div#ed .ed-search-wrapper form #searchButton,
body .tm-sidebar-a #discuss-mod-search .discuss-searchbar .btn-searchbar,
body .tm-sidebar-a #discuss-mod-search .discuss-searchbar.narrow .btn-searchbar,
div#ed .ed-tags-wrapper form input#searchButton,
#tm-content div#ed .discuss-category-header .discuss-category-info > div:last-of-type > a{
    font-size:  16px;
    display: inline-block;
    line-height: 1.3em;
    background-color: var(--rabenu-brown-color) !important;
    color: var(--rabenu-white-color) !important;
    border: 0 !important;
    padding: 10px 15px;
}
.uk-scope a.uk-button-default:hover,
.category-preview .mod-custom a:hover,
a.pagination-load-more:hover,
#tm-bottom-c .mod-custom a:hover,
.tm-sidebar-a form input[type="submit"]:hover,
.com-finder fieldset .input-group button:hover,
div#ed .ed-search-wrapper form #searchButton:hover,
body .tm-sidebar-a #discuss-mod-search .discuss-searchbar .btn-searchbar:hover,
body .tm-sidebar-a #discuss-mod-search .discuss-searchbar.narrow .btn-searchbar:hover,
div#ed .ed-tags-wrapper form input#searchButton:hover,
#tm-content div#ed .discuss-category-header .discuss-category-info > div:last-of-type > a:hover{
    background-color: var(--rabenu-red-color) !important;
    color: var(--rabenu-white-color) !important;
}
#live-video {
    background-color: var(--rabenu-light-gray-color);
    padding: 0 20px 30px 20px;
}
#live-video > div.container {
    margin-bottom: 0;
}
#live-video > div.container,
.top-a-container,
#tm-top-b,
.top-b-side-container,
.bottom-b-container,
.tm-bottom-last > div,
.tm-bottom-d > div,
#tm-bottom-a > div,
#tm-bottom-c .bottom-c-left-container,
#tm-bottom-c .bottom-c-right-container{
    background: none var(--rabenu-white-color);
    padding: 30px;
}
#live-video > div,
#tm-top-b,
.top-b-side-container,
.bottom-b-container,
.bottom-c-container,
.tm-bottom-d > div,
.bottom-a-container,
.tm-bottom-last > div,
#tm-bottom-c .bottom-c-left-container,
#tm-bottom-c .bottom-c-right-container,
.com-finder fieldset .input-group,
.psalm-blesings-list .blessing-item,
.psalm-blesings-top,
.psalm-blesings-list{
    margin-bottom: 30px;
    border-radius: 0px 20px 0px 20px;
}
#tm-top-b > div {
    margin-bottom: 40px;
}
#tm-top-b > div:last-of-type {
    margin-bottom: 0;
}
#tm-bottom-a > div{
    border-radius: 0px 20px ;
    overflow: hidden;
}
.uk-slider ul.uk-slider-items > li > div {
    overflow: hidden;
}
.uk-slider ul.uk-slider-items > li > div img {
    border-radius: 0;
}
.uk-scope .uk-card-default {
    border-radius: 0px 20px;
    background-color: var(--rabenu-very-light-gray-color) !important;
    box-shadow: none !important;
    overflow: hidden;
}
.uk-scope .uk-card-body {
    padding: 15px 20px 20px 20px !important;
}
#tm-bottom-a .card  {
    background: url("../images/bordo-1.jpg") 50% 50% no-repeat transparent;
    background-size: cover;
    color: var(--rabenu-white-color);
}
#tm-bottom-a .card h3  {
    color: var(--rabenu-white-color);
}
.dedication.uk-slider h3,
.dedication.uk-slider p,
.dedication.uk-slider .uk-margin{
    margin: 0 !important;
}
.dedication.uk-slider .uk-overlay {
    padding: 0;
}
.tm-bottom-b.grid-1 > div {
    padding: 0;
}
.catItemImageBlock {
    overflow: hidden;
}
section.category-preview > div {
    margin-bottom: 30px;
}
.category-preview-button {
    text-align: center;
}
.discuss-category-header .btn-new-post i {
   margin-left: 5px
}
.discuss-category-header .pull-left {
    float: none !important;
}
ul.mod-articlescategories {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style-type: none;
}
ul.mod-articlescategories li {
    box-sizing: border-box;
}
.tm-main ul.mod-articlescategories  {
    margin: 0 -10px;
}
.tm-main ul.mod-articlescategories li {
    box-sizing: border-box;
    overflow: hidden;
}
.tm-main ul.mod-articlescategories li {
    width:33.3333%;
    padding: 10px;
}
.tm-main ul.mod-articlescategories a {
    display: block;
    position: relative;
    overflow: hidden;
}
.tm-main ul.mod-articlescategories img {
    width: 100%;
    height: auto;
}
.tm-main ul.mod-articlescategories a .artbit-categories-module-item-text {
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: var(--rabenu-white-color);
    padding: 10px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    min-height: 35%;
    background: -moz-linear-gradient( top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100% );
    background: -webkit-linear-gradient( top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100% );
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100% );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000',endColorstr='#000000',GradientType=0 );
}
.tm-main ul.mod-articlescategories a .artbit-categories-module-item-title {
    font-size: 18px;
    font-weight: 600;
    text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.5);
}

.tm-main ul.mod-articlescategories a .artbit-categories-module-item-description {
    font-size: 13px;
    line-height: 18px;
    color: var(--rabenu-white-color);
}

.tm-sidebar-a ul.mod-articlescategories li {
    width:50%;
    padding: 10px;
    text-align: center;
}
.tm-sidebar-a ul.mod-articlescategories li:nth-child(odd) {
    padding-right: 0;
}
.tm-sidebar-a ul.mod-articlescategories li:nth-child(even) {
    padding-left: 0;
}
.tm-sidebar-a ul.mod-articlescategories li img {
    width: 112px;
    height: 112px;
    object-fit: cover;
    object-position: center center
}
.tm-sidebar-a ul.mod-articlescategories a .artbit-categories-module-item-text {
    padding-top: 6px;
    font-weight: 600;
}
.tm-sidebar-a ul.mod-articlescategories a .artbit-categories-module-item-title {
    font-size: 16px;
}
ul.mod-articlescategories a img,
.itemListSubCategories img{
    border-radius: 50%;
}
#tm-bottom-c .bottom-c-left,
#tm-bottom-c .bottom-c-right {
    display: flex;
    height: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}
#tm-bottom-c .bottom-c-left > div + div,
#tm-bottom-c .bottom-c-right > div + div{
    margin-top: 25px;
}
.category-preview .mod-custom  {
    text-align: center;
}
.tm-sidebar-a label {
    display: block;
    margin-bottom: 5px;
}
.mc-field-group {
    margin-bottom: 10px;
}
.com-finder fieldset {
    border: 0
}
.com-finder fieldset .input-group .awesomplete {
    width: 60%;
}
.com-finder fieldset .input-group button{
    font-size: 18px;
}
.com-finder fieldset .input-group .awesomplete > input {
    padding: 10px;
}
.com-finder fieldset .input-group,
div#ed .ed-search-wrapper form {
    padding: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: var(--rabenu-light-gray-color);
}

div#ed .ed-search-wrapper form .o-form-control{
    border: 0;
    height: 40px;
}
.com-finder .result__item + .result__item {
    border-top: 1px solid var(--rabenu-medium-gray-color);
}
.com-finder .result__title-text {
    font-size: 1.1em;
    font-weight: 600;
}

#tm-top-a > div:first-of-type {
    padding-right: 0;
}
#tm-top-a > div:last-of-type {
    padding-left: 0;
}
.tm-sidebar-a ul.mod-articlescategory li,
.top-b-side-container ul.mod-articlescategory li{
    margin-bottom: 30px;
}
ul.mod-articlescategory {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
ul.mod-articlescategory .mod-articles-category-image {
    display: block;
    margin-bottom: 5px;
    overflow: hidden;
}
ul.mod-articlescategory h3 {
    font-size: 18px;
    line-height: 26px;
    margin: 0;
}
ul.mod-articlescategory h3 a {
    color: var(--rabenu-very-dark-gray-color);
}
ul.mod-articlescategory h3 a:hover {
   color: var(--rabenu-brown-color);
}
ul.mod-articlescategory .mod-articles-category-readmore {
   margin: 0
}
.catItemIntroText p {
    margin: 0;
}
.full-article-intro-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.full-article-intro-text p {
    margin-bottom: 0;
}
.tm-sidebar-a .uk-child-width-1-2.uk-grid .uk-panel .uk-margin,
.tm-sidebar-a .uk-child-width-1-2.uk-grid .uk-panel .uk-margin-remove-top,
.top-b-side-container .uk-child-width-1-2.uk-grid .uk-panel .uk-margin,
.top-b-side-container .uk-child-width-1-2.uk-grid .uk-panel .uk-margin-remove-top{
    margin: 0 !important;
}
.tm-sidebar-a .uk-child-width-1-2.uk-grid .uk-panel img,
.top-b-side-container .uk-child-width-1-2.uk-grid .uk-panel img{
    margin-bottom: 5px;
}
.tm-sidebar-a .uk-child-width-1-2.uk-grid .uk-panel h3,
.top-b-side-container .uk-child-width-1-2.uk-grid .uk-panel h3{
    font-size: 15px !important;
}
.uk-grid .uk-panel .uk-grid.uk-flex-middle {
    align-items: flex-start;
}

.uk-grid .uk-panel .uk-grid.uk-flex-middle .uk-margin {
     margin-top: 0 !important; 
}
.uk-grid .uk-panel .uk-grid.uk-flex-middle .uk-margin p {
     margin: 0 !important; 
}
.uk-scope .uk-margin {
    margin-bottom: 10px !important;
}
.uk-scope .uk-margin-remove-top + .uk-margin{
    margin-top: 5px !important;
}
.uk-scope h3.uk-margin-remove-top,
.uk-scope h4.uk-margin-remove-top{
    margin-bottom: 0 !important;
}
.uk-scope .uk-grid *+p{
    margin-top: 0 !important;
}
.uk-scope .uk-margin p,
p.uk-article-meta{
    margin: 0 !important;
}
.uk-scope .uk-grid .uk-article-meta time + a,
.uk-scope .uk-grid .artbit-standard-grid-meta time + a{
    display: block;
    padding-top: 5px;
}
.ed-mod--recent-replies .o-meta {
    content: "קטגוריה: "
}
.ed-mod--recent-replies .o-meta a,
.uk-article-meta,
.uk-article-meta a {
    font-size: 16px;
    font-weight: 400;
    color: var(--rabenu-very-dark-gray-color) !important;
}
body.itemid-758 .donation-price {
    display: none;
}
.convertforms .cf-label {
    color: var(--rabenu-very-dark-gray-color) !important;
    font-size: 18px !important;
}
body.rtl .cf-radio-group .cf-label {
    padding-right: 4px;
}
body.rtl .convertforms .cf-select:after {
    right: auto;
    left: 10px;
}
body.rtl .convertforms .cf-form-wrap {
    padding: 20px 0 0 0;
}
.ed-mod--recent-replies .o-card  {
    border: 0 !important;
}
.ed-mod--recent-replies .o-card__body{
    padding: 0 !important;
}
.ed-mod--recent-replies .o-card__body a,
.ed-mod--recent-replies .o-card__body a h1{
    margin: 0 !important;
}
.ed-mod--recent-replies .o-card__body a + div{
    margin: 10px 0 0 0 !important;
}
.ed-mod--recent-replies .o-meta {
    letter-spacing: 0 !important;
}

.ed-mod--recent-replies .o-meta a::before {
    content: "קטגוריה: "
}
.cf-control-group[data-name=datetime] {
	display: none;
}
@media (max-width: 1440px) {
    .navbar-nav > li > a {
        height: 30px;
        padding: 0 10px;
        line-height: 28px;
        font-size: 16px;
    }
    .uk-scope .one-time-donation-tabs ul.uk-thumbnav > li{
         width: calc(20% - 15px)
    }
}
@media (max-width: 1280px) {
    .tm-headerbar a.tm-logo {
        font-size: 14px;
    }
    .tm-headerbar a.tm-logo img {
        width: 100px;
    }
    .tm-headerbar a.tm-logo h3 {
        margin: 10px 0 0 0;
        font-size: 26px;
        line-height: 28px;
    }
    .tm-headerbar a.tm-logo h4 {
        margin: 0;
        font-size: 22px;
        line-height: 25px;
    }
    .container {
        box-sizing: border-box;
    }
    .navbar-nav > li > a {
        padding: 0 6px;
        font-size: 15px;
    }
    #tm-footer .container {
        padding: 0 20px;
    }
}
@media (min-width: 961px) {
    .mobile-navbar-container,
    .tm-logo-small,
    .navbar-content {
        display: none;
    }
    header .tm-toolbar .container > div {
        width: 33.333%;
    }
    .hide-on-desktop {
        display: none;
    }
}
@media (max-width: 960px) {
    .tm-headerbar,
    .tm-navbar{
        display: none;
    }
    .main-content .grid {
        flex-wrap: wrap;
    }
    .top-b-container  {
        flex-direction: column;
    }
    .tm-sidebar-a,
    .tm-main.has-sidebar,
    .top-b-container.has-top-b-side #tm-top-b,  
    .top-b-side-container {
        width: 100% !important;
    }
     body.psalams .tm-sidebar-a {
        display: none;
    }
    .toolbar-middle {
        display: none;
    }
    .navbar-nav > li > a {
        padding: 0 5px;
        font-size: 16px;
    }
    .hide-on-desktop {
        display: block;
    }
}
@media (max-width: 880px) {
    .navbar-nav > li > a {
        padding: 0 4px;
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .tm-main.has-sidebar, .top-b-container.has-top-b-side #tm-top-b {
        width: 100%;
    }
    h3.module-header,
    .title-above-grid h3,
    div.itemListCategory h1,
    div.itemHeader h1.itemTitle,
    div.componentheading,
    #system .title,
    .discuss-form legend,
    #content h1.title,
    .bfPageIntro h1,
    div#discuss-wrapper .discuss-component-title,
    .psalm-page .psalm-component-title,
    .psalm-blessing-header .readings-count + h3,
    .latest_and_comments h3{
        font-size: 24px !important;
        line-height: 29px !important;
    }
    body {
        background: var(--rabenu-white-color);
    }
    .latest_and_comments .latest,
    .latest_and_comments .comments {
        width: 100%;
        border-left: 0 none;
    }
    .latest_and_comments {
        flex-wrap: wrap;
    }
    .grid-2 > *,
    .grid-3 > *,
    .grid-4 > * {
        width: 100%;
    }
    .grid,
    [class^=grid-],
    [class*=" grid-"] {
        flex-wrap: wrap;
    }
    .hidden-small {
        display: none;
    }
    .tm-navbar .container {
        padding: 0;
    }
    .tm-toolbar .container {
       /* padding: 0 0 0 12px;*/
    }
    #tm-footer-block {
        padding: 25px;
        flex-direction: column-reverse;
    }
    #tm-footer-block > div.logo {
        text-align: right;
    }
     html[dir="ltr"] #tm-footer-block > div.logo {
        text-align: left;
    }
    #tm-footer-block > div.logo {
        text-align: center;
    }
    #tm-top-a > div {
        padding: 0;
        margin-bottom: 30px;
    }
    .uk-scope .uk-h4,
    .uk-scope h4 {
        font-size: 18px;
    }
    body.homepage .home-top-lessons .uk-panel .uk-grid .uk-first-column {
        padding-left: 0px !important;
    }
    body.homepage .home-top-lessons > div.uk-first-column {
        padding-left: 10px !important;
        padding-right: 0 !important;
    }
    body.homepage .home-top-lessons > div {
        padding-right: 10px !important;
    }
    .uk-scope *+.uk-grid-margin,
    .uk-scope .uk-grid+.uk-grid,
    .uk-scope .uk-grid>.uk-grid-margin {
        margin-top: 10px !important;
    }
    .uk-scope .artbit-grid-overlay-text .artbit-grid-overlay-text-title-and-meta { 
        position: static;
        padding: 0 0 10px 0;
        min-height: 0;
        background: none;
        filter: none;
    }
    .uk-scope .artbit-grid-overlay-text .artbit-grid-overlay-text-title-and-meta,
    .uk-scope .artbit-grid-overlay-text .artbit-grid-overlay-text-title-and-meta a{
        color: var(--rabenu-black-color) !important;
    }
    .uk-scope .artbit-grid-overlay-text .artbit-grid-overlay-text-title-and-meta h3 a{
        color: var(--rabenu-brown-color) !important;
    }
    .uk-scope .uk-h3,
    .uk-scope h3 {
        font-size: 20px !important;
        line-height: 1.2em !important;
    }
     .uk-scope .uk-h4,
    .uk-scope h4 {
        font-size: 18px !important;
        line-height: 1.2em !important;;
    }
    .top-container {
        padding: 25px 20px 20px 20px;
    }
    .top-a-container,
    #tm-top-b,
    .top-b-side-container,
    .bottom-b-container,
    .tm-bottom-last > div,
    .tm-bottom-d > div,
    #tm-bottom-a > div,
    #tm-bottom-c .bottom-c-left-container,
    #tm-bottom-c .bottom-c-right-container,
    #full-middle,
    .main-content-container,
    .bottom-last-container,
    .psalm-blesings-top,
    .psalm-blesings-list{
        padding: 30px 20px;
    }
    #tm-bottom-c .bottom-c-left-container {
        margin-bottom:  0;
    }
    div.itemView div.itemAuthorLatest ul li, div.itemView div.itemRelated ul li {
        width: 48%;
    }
    .item_param {
        display: block;
    }
    .s2s_supra_contenedor.align_left {
        text-align: right !important;
    }
    div.itemImageBlock {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
    .itemListSubCategories .masonry-3 .subCategoryContainer, .blog-items.masonry-3 .blog-item {
        width: calc((100% - 40px) / 2);
        max-width: 50%;
    }
    .uk-scope .mobile-side-image > div  {
        border-bottom: 1px solid var(--rabenu-medium-gray-color) !important;
        padding-bottom: 15px;
        margin-bottom: 5px;
    }
    .uk-scope .mobile-side-image .uk-card  {
        display: flex;
    }
    .uk-scope .mobile-side-image .uk-card div[class*="uk-card-media"] {
        padding-left: 15px;
    }
    .uk-scope .mobile-side-image .uk-panel .uk-grid > div.uk-first-column,
    .uk-scope .mobile-side-image .uk-card div[class*="uk-card-media"] {
        width: 40% !important;
    }
    .uk-scope .mobile-side-image .uk-panel .uk-grid > div,
    .uk-scope .mobile-side-image .uk-card div.uk-card-body {
        width: 60% !important;
    }
    .uk-scope .mobile-side-image p{
        margin: 8px 0 !important;
        line-height: 1.2em;
    }
    .uk-scope .mobile-hide-introtext h1 + .uk-margin,
    .uk-scope .mobile-hide-introtext h2 + .uk-margin,
    .uk-scope .mobile-hide-introtext h3 + .uk-margin,
    .uk-scope .mobile-hide-introtext h4 + .uk-margin,
    .uk-scope .mobile-hide-introtext h5 + .uk-margin,
    .uk-scope .mobile-hide-introtext h6 + .uk-margin,
    .uk-scope .mobile-hide-introtext .uk-card div.uk-card-body .uk-margin{
        display: none;
    }
    .uk-scope .mobile-side-image .uk-card-default {
        border-radius: 0px;
        background-color: transparent !important;
    }
    .uk-scope .mobile-side-image .uk-card-default .uk-card-body {
        padding: 0 !important;
    }
    #itemListPrimary > .blog-item,
    #itemListSecondary > .blog-item {
        width: 100%;
        max-width: 100%;
        padding: 0;
        background-color: transparent;
    }
    .hide-on-mobile {
        display: none;
    }
    .donation-price {
        font-size: 22px;
    }
    body.itemid-815 #itemListPrimary > .blog-item {
        width: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}
@media (max-width: 480px) {
    .top-container,
    .main-content-container,
    .bottom-last-container,
     #live-video {
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }
    .navbar-content a.tm-logo-small {
        font-size: 15px;
    }
    .footer-credit-right,
    .footer-credit-left {
        width: 100%;
        text-align: center;
    }
    h2 {
        font-size: 26px;
        line-height: 29px !important;
    }
    #itemListPrimary .catItemTitle,
    #itemListSecondary .catItemTitle {
        font-size: 18px;
        line-height: 20px;
    }
    #itemListPrimary .date_hits_contener,
    #itemListSecondary .date_hits_contener {
        font-size: 12px;
    }
    #itemListPrimary div.catItemIntroText,
    #itemListSecondary div.catItemIntroText {
        line-height: 17px;
    }
    .homepage .bottom-a-container img {
        width: 100%;
    }
     .navbar-content .tm-logo-small {
        font-size: 14px;
        line-height: 17px;
    }
    .downloadLinks {
        font-size: 16px;
        line-height: 16px;
    }
    .top-a-container,
    .tm-main > section,
    .tm-main > div > div,
    .tm-main .com-content-category-blog,
    .tm-main .com-content-article,
    .tm-main .itemListSubCategories,
    #tm-content #ed,
    #tm-content .com-finder,
    #psalm-home-page,
    #psalm-item-page,
    #psalm-blessing-page,
    .psalm-blesings-list .blessing-item{
        padding: 20px;
    }
    div.itemView div.item_details {
        flex-direction: column;
    }
    #footer-credit .container{
        flex-direction: column-reverse;
    }
     #tm-footer-block > div.logo img {
       width: 80px;
    }
    .uk-scope .one-time-donation-tabs ul.uk-thumbnav > li{
         width: calc(33% - 15px)
    }
    div.itemView div.itemAuthorLatest a.itemRelImageLink,
    div.itemView div.itemRelated a.itemRelImageLink {
        max-height: 90px;
    }
    div#ed.ed-mod--recent-replies .ed-mod-card div.ed-mod-card__body > div,
    div#ed.ed-mod--recent-discussions .ed-mod-card div.ed-mod-card__body > div,
    div.discuss-mod.most-replies-discussions .list-item > div{
        padding: 15px;
    }
}
@media screen and (max-width: 400px) {
    @-ms-viewport {
        width: 100vw;
    }
}
