/*!
    
 =========================================================
 * WebEngine CMS
 * https://webenginecms.org/
 =========================================================
 * Licensed under the MIT license
 * http://opensource.org/licenses/MIT
 =========================================================
 
*/
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    border-top: none !important;
}
a:focus, a:hover {
    color: inherit !important;
    text-decoration: none !important;
}
.form-control {
	background: #fafafa;
	border: 1px solid #e3e3e3;
	color: #666;
}
.form-control:focus {
	border: 1px solid #ccc;
}
.nopadding {
   padding: 0 !important;
   margin: 0 !important;
}
.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}
.thumbnail {
    background-color: #f1f1f1;
    border: 1px solid #e3e3e3;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #ff0000;
}
.btn-primary {
    color: #3f6588;
    background-color: transparent;
	border-color: #3f6588;
	-moz-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
    color: #fff !important;
    background-color: #3f6588 !important;
	border-color: #3f6588 !important;
}
.form-horizontal .control-label {
	text-align: left !important;
}
 
/* =========================================================
   בוחר שפות - מציג רק שפה נוכחית, נפתח בהover לצד ימין
   ========================================================= */
.webengine-language-switcher {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    display: inline-block;
}
 
/* מסתיר את כל השפות חוץ מהראשונה */
.webengine-language-switcher li {
    display: none;
}
 
.webengine-language-switcher li:first-child {
    display: block;
}
 
/* כפתור השפה הנוכחית */
.webengine-language-switcher li:first-child a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffda8a !important;
    padding: 6px 10px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
}
 
/* תפריט נפתח - כל השפות ביחד בעמודה לצד ימין */
.webengine-language-switcher:hover {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
 
.webengine-language-switcher:hover li {
    display: block;
    position: static;
    background: transparent;
    border: none;
    white-space: nowrap;
}
 
/* עמודת השפות הנוספות */
.webengine-language-switcher:hover li:not(:first-child) {
    position: static;
}
 
/* עוטפים את כל השפות הנוספות בעמודה */
.webengine-language-switcher:hover::after {
    content: '';
    display: none;
}
 
/* הפתרון הנכון - dropdown container */
.webengine-language-switcher {
    position: relative;
}
 
.webengine-language-switcher:hover li:first-child {
    display: block;
}
 
.webengine-language-switcher:hover li:nth-child(n+2) {
    display: block;
    position: absolute;
    left: 100%;
    background: rgba(0, 0, 0, 0.95);
    border: none;
    border-right: 1px solid rgba(255, 218, 138, 0.4);
    border-top: 1px solid rgba(255, 218, 138, 0.4);
    border-bottom: 1px solid rgba(255, 218, 138, 0.4);
    width: 150px;
    z-index: 9999;
}
 
.webengine-language-switcher:hover li:nth-child(2)  { top: 0px; }
.webengine-language-switcher:hover li:nth-child(3)  { top: 34px; }
.webengine-language-switcher:hover li:nth-child(4)  { top: 68px; }
.webengine-language-switcher:hover li:nth-child(5)  { top: 102px; }
.webengine-language-switcher:hover li:nth-child(6)  { top: 136px; }
.webengine-language-switcher:hover li:nth-child(7)  { top: 170px; }
.webengine-language-switcher:hover li:nth-child(8)  { top: 204px; }
 
.webengine-language-switcher li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffda8a !important;
    padding: 8px 14px;
    font-size: 12px;
    transition: all 0.3s ease;
}
 
.webengine-language-switcher li a:hover {
    background: rgba(255, 218, 138, 0.15);
    color: #ffffff !important;
}
 
.webengine-language-switcher li a img {
    width: 16px;
    height: 11px;
    vertical-align: middle;
}