@media (min-width: 768px) {
	.float-md-right {
		float: right !important;
	}
	.float-md-left {
		float: left !important;
	}
}

/**/

.toshav-center-container {
	/*max-width: 1000px;*/
	margin: 0 auto;
}

.icons {
	/*max-width: 1000px;*/
	margin: 0 auto;
}

.icons > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (min-width: 992px) {
	.icons {
		text-align: center;
	}
}

.icons > ul > li {
	display: inline-block;
	padding: 1rem;
}


@media (max-width: 991px) {
	.icons > ul > li {
		display: block;
		padding: 0;
		margin-bottom: 1rem;
	}
}

/*
@media (min-width: 992px) {
	.icons > ul > li {
		float: right;
		width: 33.33%;
	}
}
*/

.icons > ul > li > a {
	display: block;
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
	position: relative;
	background: #111;
	width: 100%;
	color: #fff;
	border-radius: .25rem;
}

.icons > ul > li > a .fa-external-link {
	position: fixed;
	top: -999px;
}

@media (min-width: 992px) {
	.icons > ul > li > a {
		width: 300px;
		height: 250px;
	}
}

.icons > ul > li:nth-child(8n+1) > a {
	background: #10688a;
}
.icons > ul > li:nth-child(8n+2) > a {
	background: #118a5d;
}
.icons > ul > li:nth-child(8n+3) > a {
	background: #b17a00;
}
.icons > ul > li:nth-child(8n+4) > a {
	background: #845d35;
}
.icons > ul > li:nth-child(8n+5) > a {
	background: #bb3077;
}
.icons > ul > li:nth-child(8n+6) > a {
	background: #7c41a0;
}
.icons > ul > li:nth-child(8n+7) > a {
	background: #39959e;
}
.icons > ul > li:nth-child(8n+8) > a {
	background: #333;
}

@media (min-width: 992px) {
	.icons > ul > li > a > div {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
	}

	.icons > ul > li > a > div > .icon {
		position: absolute;
		top: 50%;
		left: 50%;
		margin-right: -50%;
		transform: translate(-50%, -50%);
		margin-top: -40px;
	}

	.icons > ul > li > a > div > .icon > img {
		height: 100px;
		
		-o-transition: .5s;
		-ms-transition: .5s;
		-moz-transition: .5s;
		-webkit-transition: .5s;
		transition: .5s;
	}

	.icons > ul > li > a > div > .text {
		position: absolute;
		top: 50%;
		left: 50%;
		margin-right: -50%;
		transform: translate(-50%, -50%);
		margin-top: 60px;
		width: 100%;
		padding: 1rem;
	}

	.icons > ul > li > a > div > .text > h3 {
		color: inherit;
		margin: 0;
		background: none;
		padding: 0;
		font-weight: bold;
	}

	.icons > ul > li > a:hover {
		transform: scale(1.05);
	}
	.icons > ul > li > a:hover > div > .icon > img {
		transform: scale(1.2);
	}
}

@media (max-width: 991px) {
	.icons > ul > li > a {
		
	}
	
	.icons > ul > li > a > div > .icon {
		position: absolute;
		top: 0;
		right: 0;
		height: 80px;
		width: 80px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.icons > ul > li > a > div > .icon > img {
		height: 50px;
	}
	
	.icons > ul > li > a > div > .text {
		padding: 1rem;
		padding-right: 90px;
	}
	
	.icons > ul > li > a > div > .text > h3 {
		font-size: 1rem;
		color: #fff !important;
		font-weight: bold;
		margin: 0;
		font-size: 1.2rem;
		margin-bottom: .25rem;
	}
}



/**/

.ticket {
	
	position: relative;
}
.ticket .card-body {
	cursor: pointer;
}
/*
.ticket:hover:after {
	display: block;
	position: absolute;
	top: 1rem;
	left: 1rem;
	content: 'הצג מידע מורחב';
	background: #007bff;
	color: #fff;
	padding: .25rem .75rem;
}
.ticket.active:hover:after {
	content: 'סגור מידע מורחב';
}*/
.ticket:hover {
	box-shadow: 0 0 30px rgba(0,0,0,0.2);
	border: 1px solid #007bff;
}
.ticket .full-info {
	display: none;
}
.ticket.active .short-info {
	display: none;
}
.ticket.active .full-info {
	display: block;
}
.ticket .short-description {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ticket.ticket-process-1,
.ticket.ticket-process-2,
.ticket.ticket-process-3 {
	border-right: 5px solid #0cb3c6;
}

/*
.ticket.ticket-process-1 {
	border-right: 5px solid #8071f2;
}
.ticket.ticket-process-2 {
	border-right: 5px solid #e4a55a;
}
.ticket.ticket-process-3 {
	border-right: 5px solid #2fa152;
}
*/

/*
.ticket .history {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
}
.ticket .history:before {
    content: '';
    display: block;
    height: 100%;
    width: 3px;
    background: #007bff;
    position: absolute;
    top: 0;
    right: 11px;
}
.ticket .history > li {
	list-style: none;
	padding: 0;
	margin: 0;
	padding-top: 10px;
	padding-right: 30px;
}
.ticket .history > li:before {
    content: '\f111';
	font-family: 'FontAwesome';
	position: absolute;
    right: 5px;
	margin-top: -2px;
	color: #007bff;
}
.ticket .date-time {
	color: #007bff;
}
*/

/**/

.subjects-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	
	
}
.subjects-list > ul  {
	column-count: 2;
}

.subjects-list ul li {
	-webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    column-break-inside: avoid;
}

.subjects-list > ul > li > div {
	font-size: 1.3rem;
	font-weight: bold;
}
.subjects-list > ul > li {
	margin-bottom: 1.5rem;
	
	
}
.subjects-list > ul > li > ul {
	
}

/**/

details.msg {
	display: block;
    background: #ebf2f3;
    padding: 1rem;
    border: 1px solid #0cb3c6;
	border-radius: .25rem;
	margin-bottom: 1.5rem;
}
details.msg summary {
	font-size: 1.3rem;
}
details.msg.read-0 summary {
	font-weight: bold;
}
details.msg summary .date {
	float: left;
}
details.msg summary .subject {
	display: inline;
}
details.msg .msg-body {
	display: block;
	background: #fff;
	margin-top: 1rem;
	padding: 1rem;
	border: 1px solid #ddd;
}

/**/

.toshav-center-news h2 {
	font-size: 1.2rem;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
	padding: 0.75rem;
	font-weight: bold;
	color: #1e99d9;
}
.toshav-center-news ul {
	list-style: none;
	padding: 0;
	margin: 0;
	
	padding-right: 220px;
}
.toshav-center-news .buttons {
	position: absolute;
    top: 0;
    left: 0;
    padding: .4rem .75rem;
}
.toshav-center-news .buttons button {
	background: none;
	padding: 0;
    margin: 0;
	border: 0;
	font-size: 24px;
	color: #1e99d9;
}
.toshav-center-news a {
	color: inherit;
}

@media (max-width: 991px) {
	.toshav-center-news .content {
		margin-top: 50px;
	}
	.toshav-center-news ul {
		padding: 0;
	}
}

.tohshav-center-user-bar .btn {
	margin-right: .5rem;
}

.tohshav-center-user-bar .btn-group {
	display: flex;
}

@media (max-width: 991px) {
	
	.tohshav-center-user-bar .btn-group {
		margin: 0 -.5rem;
	}
		
	.tohshav-center-user-bar .btn-group > span {
		flex-shrink: 0;
		flex-grow: 1;
		padding: 0 .5rem;
	}
	
	.tohshav-center-user-bar .btn {
		position: relative;
		text-align: center;
		margin-right: 0;
		width: 100%;
	}
	
	.tohshav-center-user-bar .btn > span {
		display: block;
	}
}

.tohshav-center-user-bar .btn {
	position: relative;
}

.tohshav-center-user-bar .badge {
	position: absolute;
	top: 0;
	left: 0;
	margin-top: -5px;
	margin-left: -5px;
	border-radius: 50%;
}

@media (min-width: 992px) {
	.desktop-element .h1 {
		font-size: 6rem;
	}
}

/**/

.subjects-list label {
	display: inline;
}

/**/

.more-forms-btn {
	font-size: 1.8rem;
	position: relative;
	text-align: center;
}

@media (max-width: 991px) {
	.more-forms-btn {
		font-size: 1.4rem;
		text-align: right;
	}
	
	.more-forms-btn span {
		display: block;
	}
	
	.more-forms-btn span em {
		font-size: 2rem;
		position: absolute;
		top: 50%;
		left: .5rem;
		margin-top: -1rem;
	}
}

.attr-item-inner-type2-obj {
    background: #ebf2f3;
    border-radius: 10px;
    margin-bottom: 10px;
    text-align: center;
    border-right: 2px solid #197cb0;
}



/**/

.street-info .table {
		background: #fff;
	}
	.street-info .table th {
		background: #0cb3c6;
		color: #fff;
	}

@media (max-width: 991px) {
	.street-info .table th {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.street-info .table tr > td:nth-child(1) {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	
	/*.street-info table,
	.street-info thead,
	.street-info tbody,
	.street-info caption,
	.street-info tr,
	.street-info th,
	.street-info td	{
		display: block;
		width: 100%;
	}*/
}



.toshav-center-pirs {
	padding: 15px;
}
.toshav-center-pirs a {
	display: inline-block;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	margin: 15px;
}
.toshav-center-pirs img {
	display: block;
}

.toshav-center-pirs .slick-dots {
	list-style: none;
	padding: 0;
	margin: 0;
	
	text-align: center;
}

.toshav-center-pirs .slick-dots > li {
	display: inline-block;
	padding: 0 .5rem;
}

.toshav-center-pirs .slick-dots > li > button {
	width: 10px;
	height: 10px;
	font-size: 0;
	border: 1px solid #003058;
	background: none;
	padding: 0;
}

.toshav-center-pirs .slick-dots > li.slick-active > button {
	background: #003058;
}

.toshav-center-pirs button:before {
	color: #003058 !important;
}


.toggled-card .card-header h3:before {
	content: '\f196';
	font-family: 'FontAwesome';
	margin-left: 10px;
}
.toggled-card.opened .card-header h3:before {
	content: '\f147';
	font-family: 'FontAwesome';
	margin-left: 10px;
}

.card-light  {
	border: 1px solid #fff;
}
.card-light .card-body  {
	background: #fff;
}
.card-light .card-header {
	background: #fff;
	color: #111;
	border-bottom: 1px solid #fff
}
.card-light.opened {
	border: 1px solid #0cb3c6;
}
.card-light.opened .card-header {
	background: #0cb3c6;
	color: #fff;
}
.card-light.toggled-card .card-header {
	cursor: pointer;
}
.card-light.toggled-card .card-header:hover {
	background: #f1f1f1;
}
.card-light.toggled-card.opened .card-header:hover {
	background: #0197a8;
}