.elementor-custom-table-widget-categories {
	width: 100%;
	height: auto;
	background-image: url(../img/bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	row-gap: 24px;
	column-gap: 16px;
	list-style: none;
	padding: 56px 40px;
	border-radius: 24px;
	margin: 48px 0 48px 0;
}
.elementor-custom-table-widget-categories.bigger {
	grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 1200px) {
	.elementor-custom-table-widget-categories {
		grid-template-columns: repeat(3, 1fr);
	}
}
.elementor-custom-table-widget-categories li {
	width: 100%;
	height: auto;
}
.elementor-custom-table-widget-categories li a {
	width: 100%;
	height: auto;
	min-height: 80px;
	background-color: #ffffff;
	border-radius: 16px;
	border: 2px solid transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px;
	font-size: 18px;
	font-weight: 400;
	color: #202020;
	text-align: center;
	line-height: 24px;
	transition: all 0.3 linear;
}
.elementor-custom-table-widget-categories li a:hover {
	background-color: #00224D;
	color: #ffffff;
	border-color: #ffffff;
	transition: all 0.3 linear;
}
@media only screen and (max-width: 1024px) {
	.elementor-custom-table-widget-categories {
		margin: 0;
	}
}
@media only screen and (max-width: 768px) {
	.elementor-custom-table-widget-categories li a {
		font-size: 16px;
	}
}
@media only screen and (max-width: 560px) {
	.elementor-custom-table-widget-categories {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 16px;
	}
	.elementor-custom-table-widget-categories li a {
		font-size: 14px;
		font-weight: 500;
	}
}

.action__buttons {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 48px 0 28px 0;
}
.action__buttons span {
	display: flex;
	align-items: center;
	gap: 16px;
}
.action__buttons .primary__btn {
	width: fit-content;
	height: fit-content;
	background-color: transparent;
	padding: 10px 14px;
	border-radius: 10px;
	border: 1px solid #00224D;
	color: #00224D;
	font-size: 16px;
	font-weight: 500;
	line-height: 28px;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 4px;
	cursor: pointer;
	transition: all 0.2s linear;
}
.action__buttons .primary__btn.orange {
	border: 1px solid #FC6736;
	color: #FC6736;
}
.action__buttons .primary__btn svg {
	width: 24px;
	height: 24px;
}
.action__buttons .primary__btn svg path {
	transition: all 0.2s linear;
	stroke: #00224D;
}
.action__buttons .primary__btn.orange svg path {
	stroke: #FC6736;
}
.action__buttons .primary__btn svg.fill path {
	stroke: none;
	fill: #00224D;
}
.action__buttons .primary__btn.orange svg.fill path {
	stroke: none;
	fill: #FC6736;
}
.action__buttons .primary__btn:hover {
	background-color: #00224D;
	color: #ffffff;
	transition: all 0.2s linear;
}
.action__buttons .primary__btn.orange:hover {
	background-color: #FC6736;
}
.action__buttons .primary__btn:hover svg path {
	transition: all 0.2s linear;
	stroke: #ffffff;
}
.action__buttons .primary__btn:hover svg.fill path {
	stroke: none;
	fill: #ffffff;
}
.product__modal {
	width: 80%;
	max-width: 1024px;
	height: fit-content;
	max-height: 80svh;
	background-color: #ffffff;
	border-radius: 48px;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
	margin: auto;
	padding: 64px 64px 80px 64px;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-100px);
	transition: all 0.2s linear;
}
.product__modal::-webkit-scrollbar {
  width: 4px;
}

.elementor-custom-table-widget-parent::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 12px;
  z-index: 1;
}
.product__modal.active {
	visibility: visible;
	opacity: 97%;
	transform: translateY(0);
	transition: all 0.2s linear;
	transition-delay: 0.4s;
}
.product__modal-loader {
	width: 100%;
	height: 100%;
	background-color: white;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 50;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.15s linear;
}
.product__modal-loader.active {
	opacity: 1;
	visibility: visible;
	transition: all 0.15s linear;
}
.product__modal-loader svg {
	width: 24px;
	height: 24px;
	color: #FC6736;
	animation: spin 1s linear infinite;
}
.product__modal-loader svg circle {
	opacity: 0.25;
}
.product__modal-loader svg path {
	opacity: 0.75;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.product__modal-head {
	width: 100%;
	height: fit-content;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.product__modal-head button {
	width: 24px;
	height: 24px;
	background: none;
	cursor: pointer;	
}
.product__modal-head button svg {
	width: 100%;
	height: 100%;
}
.product__modal-head span {
	display: flex;
	align-items: center;
	gap: 8px;
}
.product__modal-head span svg {
	width: 26px;
	height: 26px;
}
.product__modal-head span h3 {
	font-size: 16px;
	font-weight: 500;
	line-height: 28px;
	color: #00224D;
	margin:0;
}
.product__modal-body {
	width: 100%;
	height: fit-content;
	margin-top: 48px;
}
.product__modal-body .form__wrapper {
	width: 100%;
	height: auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 12px;
	row-gap: 20px;
}
@media only screen and (max-width: 1200px) {
	.product__modal-body .form__wrapper {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media only screen and (max-width: 768px) {
	.product__modal-body .form__wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
	.product__modal {
		max-height: 64svh;
		overflow-y: auto;
		border-radius: 32px;
		padding: 48px 48px 56px 48px;
	}
}
@media only screen and (max-width: 560px) {
	.product__modal-body .form__wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
	.product__modal {
		width:  90%;
		border-radius: 16px;
		padding: 24px 24px 32px 24px;
	}
}
.product__modal-body .form__wrapper .input__group {
	width: 100%;
	height: fit-content;
	position: relative;
	z-index: 10;
}
.product__modal-body .form__wrapper .input__group label {
	padding: 0 4px;
	font-size: 14px;
	font-weight: 400;
	color: #616161;
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	z-index: -10;
	transition: all 0.15s linear;
}
.product__modal-body .form__wrapper .input__group label.focused {
	top: 0;
	color: #00224D;
	font-weight: 500;
	background-color: white;
	z-index: 10;
	transition: all 0.15s linear;
}
.product__modal-body .form__wrapper .input__group input,
.product__modal-body .form__wrapper .input__group select {
	width: 100%;
	height: 56px;
	background-color: transparent;
	border-radius: 12px;
	border: 1px solid #DEDEDE;
	font-size: 16px;
	color: #616161;
	padding: 0 16px;
}
.product__modal-body .form__wrapper .input__group input:focus {
	border-color: #DEDEDE !important;
}
.product__modal-body .form__wrapper .input__group input::placeholder {
	color: transparent;
}
.file__group {
	width: 100%;
	height: 100%;
}
.file__group label {
	width: 100%;
	height: 100%;
	background-color: #FC6736;
	border-radius: 12px;
    padding: 0 16px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
h4 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-weight: 400 !important;
    font-size: 15px !important;
    margin: 0 !important;
    color: #ffffff;
}
.file__group input {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0;
	width: 100%;
	height: 100%;
}
.product__modal-footer {
	width: 100%;
	height: fit-content;
	margin-top: 32px;
	display: flex;
	justify-content: end;
}
.product__modal-footer button {
	width: fit-content;
	height: fit-content;
	padding: 14px 44px;
	border-radius: 12px;
	background-color: #ffffff;
	border: 1px solid #00224D;
	font-size: 18px;
	font-family: 'KalamehWeb_Bold';
	font-weight: 700;
	line-height: 28px;
	color: #00224D;
	cursor: pointer;
	transition: all 0.15s linear;
	position: relative;
	overflow: hidden;
}
.product__modal-footer button:hover {
	background-color: #00224D;
	color: white;
	transition: all 0.15s linear;
}
.product__modal-footer button .custom-loader {
	width: 100%;
	height: 100%;
	background-color: #00224D;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.15s linear;
}
.product__modal-footer button .custom-loader.active {
	opacity: 1;
	visibility: visible;
	transition: all 0.15s linear;
}
.product__modal-footer button .custom-loader svg {
	width: 24px;
	height: 24px;
	color: white;
	animation: spin 1s linear infinite;
}
.product__modal-footer button .custom-loader svg circle {
	opacity: 0.25;
}
.product__modal-footer button .custom-loader svg path {
	opacity: 0.75;
}
.product__overlay {
	width: 100%;
	height: 100svh;
	background-color: #00224D;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999;
	visibility: hidden;
	opacity: 0;
	transition: all 0.2s linear;
	transition-delay: 0.4s;
}
.product__overlay.active {
	visibility: visible;
	opacity: 97%;
	transition: all 0.2s linear;
}

.category__description {
	width: 100%;
	height: auto;
	padding: 32px 40px 56px 40px;
	border-radius: 24px;
	border: 1px solid #00224D;
	margin-top: 64px;
	color: #202020;
    font-family: "KalamehWeb_Bold", Sans-serif;
    font-size: 16px;
	text-align: justify;
}
.category__description strong {
	font-size: 18px;
	font-weight: bold;
}
.category__description:is(h1, h2, h3, h4, h5, h6) {
	font-size: 22px !important;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 10px;
}
.category__description img {
	width: auto;
	max-width: 100%;
	height: auto;
	border-radius: 16px !important;
	margin:16px auto;
}
@media only screen and (max-width: 1024px) {
	.category__description {
		margin-top: 44px;
	}
}
@media only screen and (max-width: 768px) {
	.category__description {
		padding: 24px 16px 32px 16px;
	}
}

.elementor-custom-table-widget-parent {
	width: 100%;
	height: auto;
	max-height: 82svh;
	background-color: #00224D;
	border: 1px solid #00224D;
	border-radius: 16px;
	overflow-x: hidden;
	overflow-y: auto;
}

.elementor-custom-table-widget-parent::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.elementor-custom-table-widget-parent::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 12px;
  z-index: 1;
}

.elementor-custom-table-widget-parent::-webkit-scrollbar-thumb {
  background-color: #FC6736;
  border-radius: 12px;
}

table.elementor-custom-table-widget {
	border-collapse: collapse;
    border-style: hidden;
	margin: 0;
}

table.elementor-custom-table-widget thead {
	height: 72px;
	background-color: #00224D;
	position: sticky;
	top: 0;
	z-index: 99;
}

table.elementor-custom-table-widget tr,
table.elementor-custom-table-widget th,
table.elementor-custom-table-widget td {
	border: 0;
}

table.elementor-custom-table-widget tr {
	font-size: 16px;
}
table.elementor-custom-table-widget tr th {
	font-weight: 700;
	color: #ffffff;
	padding: 0 16px;
}
table.elementor-custom-table-widget tr td,
table.elementor-custom-table-widget tr td a {
	font-weight: 400;
	color: #616161;
}
table.elementor-custom-table-widget tbody tr:nth-child(odd) {
	background-color: #ffffff;
}

table.elementor-custom-table-widget tbody tr:nth-child(even) {
	background-color: #F0F0F0;
}

table.elementor-custom-table-widget tbody tr:hover {
	background: #004FB3;
	background: linear-gradient(to bottom, #00224D, #004FB3);
}
table.elementor-custom-table-widget tbody tr i {
	color: #616161;
	font-size: 24px;
}
table.elementor-custom-table-widget tbody tr img {
	width: 24px;
	height: 24px;
}
table.elementor-custom-table-widget tbody tr:hover i {
	color: #ffffff;
}
table.elementor-custom-table-widget tbody tr:hover img {
	filter: brightness(0) invert(1);
}

table.elementor-custom-table-widget tbody tr:hover td,
table.elementor-custom-table-widget tbody tr:hover td a {
	color: #ffffff;
}

table.elementor-custom-table-widget tbody tr td span.operation {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
}
table.elementor-custom-table-widget tbody tr td span.operation button {
	background-color: transparent;
	cursor: pointer;
}

table.elementor-custom-table-widget tr:first-child th:first-child {
  border-top-right-radius: 14px;
}

table.elementor-custom-table-widget tr:first-child th:last-child {
  border-top-left-radius: 14px;
}

table.elementor-custom-table-widget tr:last-child td:first-child {
  border-bottom-right-radius: 14px;
}

table.elementor-custom-table-widget tr:last-child td:last-child {
  border-bottom-left-radius: 14px;
}

@media only screen and (max-width: 600px) {
  .elementor-custom-table-widget-parent {
	  max-height: 68svh;
	  overflow-x: auto;
	  white-space: nowrap;
  }
  table.elementor-custom-table-widget tr .desktop-block {
	  display: none;
  }

  table.elementor-custom-table-widget tr th {
	  border-left:1px solid rgba(255, 255, 255, 0.20);
  }

  table.elementor-custom-table-widget tr td {
	  border-left:1px solid rgba(141, 140, 137, 0.50);
	  font-size: 14px;
	  padding: 12px 4px;
  }

	table.elementor-custom-table-widget tr {
		font-size: 14px;
	}
	table.elementor-custom-table-widget tr td,
	table.elementor-custom-table-widget tr td a {
		font-weight: 500;
	}

  table.elementor-custom-table-widget tr td:last-child {
	  border-left: 0;
  }
}

@media only screen and (max-width: 1280px) {
  .widget-container {
	  border-radius: 0;
  }
}

.elementor-custom-brand-widget-parent {
	width: 100%;
	height: auto;
	background-color: #00224D;
	padding: 24px 32px 24px 32px;
	border-radius: 16px;
	margin: 48px 0 0 0;
}
@media only screen and (max-width: 1024px) {
	.elementor-custom-brand-widget-parent {
		margin: 0;
	}
}

.elementor-custom-brand-widget-parent h3 {
	font-size: 16px;
	font-weight: bold;
	color: #fafafa;
	margin-bottom: 12px;
}

.elementor-custom-brand-widget-parent ul {
	width: 100%;
	height: auto;
	display: flex;
	gap: 8px;
	list-style: none;
	margin: 0;
	overflow-x: auto;
	padding: 16px 0 24px 0;
}

.elementor-custom-brand-widget-parent ul::-webkit-scrollbar {
  height: 6px;
}

/* Track */
.elementor-custom-brand-widget-parent ul::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.elementor-custom-brand-widget-parent ul::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 16px;
}

/* Handle on hover */
.elementor-custom-brand-widget-parent ul::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.4);
}

.elementor-custom-brand-widget-parent ul li {
	width: 146px;
	height: 56px;
	aspect-ratio: 1 / 1;
	background-color: #ffffff;
	border: 1px solid #10386A;
	border-radius: 10px;
	position: relative;
	z-index: 2;
	flex-shrink: 0;
}

.elementor-custom-brand-widget-parent ul li::before {
	content: '';
    width: 100%;
    height: 100%;
    background-image: url(../img/brand-back.png);
    border-radius: 10px;
	filter: grayscale(1);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.elementor-custom-brand-widget-parent ul li a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px;
	color: #00224D;
	font-size: 16px;
	font-weight: 500;
	line-height: 38px;
}

.elementor-custom-brand-widget-parent ul li.all-brands {
	background-color: transparent;
	background-image: none;
	border: 1px solid #ffffff;
}

.elementor-custom-brand-widget-parent ul li.all-brands::before {
	content: unset;
}

.elementor-custom-brand-widget-parent ul li.all-brands a {
	color: #ffffff;
}

.elementor-custom-brand-widget-parent ul li.all-brands.active::after,
.elementor-custom-brand-widget-parent ul li.active::after {
	content: '';
	width: 100%;
	height: 4px;
	background-color: #FC6736;
	position: absolute;
	right: 0;
	bottom: -16px;
}

.elementor-custom-brand-widget-parent ul li.all-brands:hover {
	background-color: #ffffff;
	border: 1px solid #ffffff;
}

.elementor-custom-brand-widget-parent ul li.all-brands:hover a {
	color: #00224D;
}

.elementor-custom-brand-widget-parent ul li img {
	max-height: 100%;
	width: auto;
}

@media only screen and (max-width: 1024px) {
	.elementor-custom-brand-widget-parent {
		border-radius: 0;
	}
}

@media only screen and (max-width: 640px) {
	.elementor-custom-brand-widget-parent ul li:last-of-type {
		margin-left: 8px;
	}

	.elementor-custom-brand-widget-parent ul li img {
		max-height: 100%;
	}
}

.search__result_parent {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.search__result_parent .search__row {
	width: 100%;
	height: auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

@media only screen and (max-width: 1200px) {
	.search__result_parent .search__row {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}
}

@media only screen and (max-width: 992px) {
	.search__result_parent .search__row {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media only screen and (max-width: 620px) {
	.search__result_parent .search__row {
		grid-template-columns: repeat(1, 1fr);
	}
}

.search__card {
	width: 100%;
	height: auto;
	background-color: #EAEAEA;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 10px;
}

.search__card-image {
	width: 100%;
	height: auto;
	position: relative;
	background-color: #ffffff;
	border-radius: 16px;
	overflow: hidden;
}

.search__card-image img {
	width: 100%;
    height: 175px;
    object-fit: cover;
    object-position: center center;
    filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
    transition: all 0.3s linear;
}

.search__card:hover .search__card-image img {
	filter: none;
	transition: all 0.3s linear;
}

.search__card-image span {
	width: fit-content;
    height: fit-content;
    position: absolute;
    left: 8px;
    top: 8px;
    z-index: 10;
    padding: 2px 8px;
    font-size: 14px;
    color: #ffffff;
    background-color: #FC6736;
    border-radius: 8px;
}

.search__card-content {
	width: 100%;
    flex-grow: 1;
    min-height: 132px;
    padding: 16px;
    background-color: #ffffff;
    border-radius: 20px;
    transition: all 0.3s linear;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.search__card:hover .search__card-content {
	background-color: #00224D;
	transition: all 0.3s linear;
}

.search__card-content h3 {
	color: #00224D;
	font-family: "KalamehWeb_Regular", Sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: normal;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	transition: all 0.3s linear;
}

.search__card:hover .search__card-content h3 {
	color: #FC6736;
	transition: all 0.3s linear;
}

.search__card-content .search__call {
	font-size: 14px;
    font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 8px;
	transition: all 0.3s linear;
}

.search__card:hover .search__card-content .search__call {
	color: #ffffff;
	transition: all 0.3s linear;
}

.search__card-content .search__call i {
	font-size: 19px;
    padding: 0px;
    transition: all .01s ease-in-out;
 }

.search__pagination {
	width: fit-content;
    height: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.search__pagination a,
.search__pagination span,
.search__pagination i {
	color: #00224D;
}

.search__pagination a:hover,
.search__pagination i:hover {
	color: #FC6736;
}

.search__pagination i {
	font-size: 20px;
}