* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	margin: 0px;
}

[v-cloak] {
	display: none !important;
}

#kta_preload_screen {
	position: fixed;
	z-index: 9999999;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #fff;
	box-sizing: border-box;
}
#kta_preload_screen .background_color {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	gap: 50px;
	background: #fff;
	box-sizing: border-box;
}
#kta_preload_screen .background_color .client-logo-preload {
	height: 200px;
	width: auto;
}
/* #kta_preload_screen .background_color .dc-logo-preload {
	height: 70px;
	width: auto;
} */

#kta_vue_wrapper {
	--main-header-desktop-height: 50px;
	--secondary-header-desktop-height: 61px;

	--main-header-mobile-height: 60px;
	--secondary-header-mobile-height: 40px;
	--main-footer-mobile-height: 77px;

	--menu-btn-mobile-height: 35px;
	--menu-btn-mobile-width: 35px;

	--menu-btn-disabled: #999999;

	--viewport-linear-gradient: linear-gradient(180deg, var(--main-color-op-65) 0%, var(--main-color) 100%);

	--desktop-below-header-linear-gradient: linear-gradient(180deg, var(--main-color-op-66) 0%, var(--main-color) 100%);

	/* --mobile-above-footer-linear-gradient: linear-gradient(180deg, var(--main-color-op-65) 0%, var(--main-color-op-97) 100%); */

	--mobile-below-header-above-footer-linear-gradient: linear-gradient(180deg, var(--main-color-op-68) 0%, var(--main-color-op-97) 100%);

	--primary-custom-color: #FAB51E;
	--secondary-custom-color: #034726;
	--tertiary-custom-color: #F1E3D9;

	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;

	font-family: 'Poppins';
	background: var(--viewport-linear-gradient);
}

#kta_vue_wrapper * {
	box-sizing: border-box;
}

#kta_vue_wrapper .kta__module_container {
	position: relative;
	height: calc(100% - var(--main-header-desktop-height));
	width: 100%;
}

#kta_vue_wrapper .kta__module_container .kta_module_consultant {
	position: absolute; 
	bottom: 30px; 
	left: 50%; 
	transform: translateX(-50%); 
	display: flex; 
	justify-content: center;
}

#kta_vue_wrapper .kta__module_container .kta__module_wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
}

#kta_vue_wrapper .kta__module_container .kta__module_summary {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: transparent;
}

#kta_vue_wrapper .kta__module_container .kta__module_wrapper.fullscreen {
	position: fixed;
	z-index: 12;
	background: var(--viewport-linear-gradient);
}
#kta_vue_wrapper .kta__module_container .kta__module_wrapper.with-mobile-footer {
	position: fixed;
	padding-bottom: var(--main-footer-mobile-height);
	background: var(--viewport-linear-gradient);
}
#kta_vue_wrapper .kta__module_container .kta__module_wrapper.desktop-lg {
	background: var(--desktop-below-header-linear-gradient);
}
#kta_vue_wrapper .kta__module_container .kta__module_wrapper.mobile-below-header-above-footer-lg {
	background: var(--mobile-below-header-above-footer-linear-gradient);
}


/* container catalog */
#kta_vue_wrapper .kta__module_container .kta__container_wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}
#kta_vue_wrapper .kta__module_container .kta__container_wrapper .loading_overlay {
	position: absolute;
	z-index: 1;
	top: 0;
	left:0;
	width:100%;
	height: 100%;

	background-color: #fff;
	background-image: url('img/loaderLarge.gif');
	background-repeat: no-repeat;
	background-position: center;	
}


/*#region ================= VUE-TIPPY tolltip ================= */
.tippy-box[data-theme~='custom'] {
  background-color: rgb(36, 47, 59);
  border: 1px solid rgb(130, 136, 143);
	border-radius: 0;
  opacity: 0.9;
	color: rgb(255, 255, 255);
	font-size: 12px;  
  font-family: Poppins;
}
/*#endregion ================= VUE-TIPPY ================= */


/*#region ================= DESKTOP - HEADER ================= */
#kta_vue_wrapper .main-header.desktop {
	position: relative;
	z-index: 1;
	width: 100%;
	height: var(--main-header-desktop-height);
	background-color: var(--primary-custom-color);
}
#kta_vue_wrapper .main-header.desktop.shadow {
	box-shadow: 0px 1px 4px rgb(0, 0, 0, 0.1);
	border-bottom: 1px solid rgb(0 0 0 / 5%);
}

#kta_vue_wrapper .main-header.desktop .menu_button {
	margin: 0;
	padding: 0;
	background-color: transparent;
	border: none;
	font-family: inherit;
	cursor: pointer;
}

/* main navigation bar */
#kta_vue_wrapper .main-header.desktop .menu-nav {
	position: relative;
	display: flex;
	justify-content: space-between;
	height: 100%;
	padding: 0 20px;
}

#kta_vue_wrapper .main-header.desktop .menu-nav .left,
#kta_vue_wrapper .main-header.desktop .menu-nav .right  {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

#kta_vue_wrapper .main-header.desktop .menu-nav .center {
	/* position: absolute;
	top: 0;
	left: 0;
	width: 100%; */
	height: var(--main-header-desktop-height);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

#kta_vue_wrapper .main-header.desktop .menu_button {
	display: flex;
	align-items: center;
	height: 100%;
	margin: 0 10px;
	color: var(--secondary-color);
	font-family: inherit;
}
#kta_vue_wrapper .main-header.desktop .menu_button i {
	font-size: 26px;
	pointer-events: none;
	color: var(--secondary-custom-color);
}
#kta_vue_wrapper .main-header.desktop .menu_button .icon-shopping-cart {
	display: inline-block;
	width: 26px;
	height: 26px;
	background-color: transparent;
	background-size: contain;
	background-image: url('img/basket.svg');
	background-repeat: no-repeat;
	background-position: center;
}

#kta_vue_wrapper .main-header.desktop .menu_button:disabled {
	cursor: default;
}
#kta_vue_wrapper .main-header.desktop .menu_button:disabled i,
#kta_vue_wrapper .main-footer.desktop .menu_button:disabled i {
	color: var(--menu-btn-disabled);
}

#kta_vue_wrapper .main-header.desktop .menu_button.has-badge {
	position: relative;
}
#kta_vue_wrapper .main-header.desktop .menu_button .badge {
	position: absolute;
	top: 5px;
	right: -10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 15px;
	border-radius: 8px;
	background-color: var(--tertiary-custom-color);
	color: var(--secondary-custom-color);
}


#kta_vue_wrapper .main-header.desktop .menu-nav .menu_button .badge,
#kta_vue_wrapper .main-header.desktop .menu-nav .menu_button i {
	animation: 0.3s ease-in-out elemAppear;
}

/*#endregion ================= DESKTOP-HEADER ================= */



/*#region ================= MOBILE - HEADER + FOOTER ================= */
#kta_vue_wrapper .main-header.mobile .menu_button,
#kta_vue_wrapper .main-footer.mobile .menu_button {
	margin: 0;
	padding: 0;
	background-color: transparent;
	border: none;
	font-family: inherit;
	cursor: pointer;
}
#kta_vue_wrapper .main-header.mobile ul,
#kta_vue_wrapper .main-footer.mobile ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#kta_vue_wrapper .main-header.mobile .header_client_logo {
	height: inherit;
	padding: 5px;
}
#kta_vue_wrapper .main-header.mobile .header_client_logo img {
	height: 100%;
	width: auto;
}

#kta_vue_wrapper .main-header.mobile .menu-nav {
	width: 100%;
	padding-right: 20px;
}
#kta_vue_wrapper .main-footer.mobile .menu-nav {
	width: 100%;
	padding: 0 20px;
}

#kta_vue_wrapper .main-header.mobile .menu-nav ul,
#kta_vue_wrapper .main-footer.mobile .menu-nav ul {
	position: relative;
	display: flex;
	justify-content: flex-end;
}

#kta_vue_wrapper .main-header.mobile .menu-nav ul li.fill-width {
	width: 100%;
}

#kta_vue_wrapper .main-header.mobile .menu_button,
#kta_vue_wrapper .main-footer.mobile .menu_button {
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--menu-btn-mobile-height);
	width: var(--menu-btn-mobile-width);
	background-color: transparent;
	font-family: inherit;
}

#kta_vue_wrapper .main-header.mobile .menu_button i,
#kta_vue_wrapper .main-footer.mobile .menu_button i {
	font-size: 26px;
	color: var(--secondary-custom-color);
}
#kta_vue_wrapper .main-header.mobile .menu_button .icon-shopping-cart {
	display: inline-block;
	width: 26px;
	height: 26px;
	background-color: transparent;
	background-size: contain;
	background-image: url('img/basket.svg');
	background-repeat: no-repeat;
	background-position: center;
}

#kta_vue_wrapper .main-header.mobile .menu_button:disabled i,
#kta_vue_wrapper .main-footer.mobile .menu_button:disabled i {
	color: var(--menu-btn-disabled);
}

#kta_vue_wrapper .main-header.mobile .menu_button.has-badge,
#kta_vue_wrapper .main-footer.mobile .menu_button.has-badge {
	position: relative;
}
#kta_vue_wrapper .main-header.mobile .menu_button .badge,
#kta_vue_wrapper .main-footer.mobile .menu_button .badge {
	position: absolute;
	top: -4px;
	right: -7px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 15px;
	border-radius: 8px;
	font-size: 12px;
	background-color: var(--tertiary-custom-color);
	color: var(--secondary-custom-color);
}
#kta_vue_wrapper .main-header.mobile .menu-nav .menu_button .badge,
#kta_vue_wrapper .main-header.mobile .menu-nav .menu_button i,
#kta_vue_wrapper .main-footer.mobile .menu-nav .menu_button .badge,
#kta_vue_wrapper .main-footer.mobile .menu-nav .menu_button i {
	animation: 0.3s ease-in-out elemAppear;
}

/*#endregion ================= MOBILE - HEADER + FOOTER================= */



/*#region ================= MOBILE - HEADER ================= */
#kta_vue_wrapper .main-header.mobile {
	display: none;

	width: 100%;
	height: var(--main-header-mobile-height);
	align-items: center;
	justify-content: space-between;
	background-color: transparent;
}
#kta_vue_wrapper .main-header.mobile .menu-nav ul {
	gap: 3px;
}
/*#endregion ================= MOBILE-HEADER ================= */



/*#region ================= MOBILE - FOOTER ================= */

#kta_vue_wrapper .main-footer.mobile {
	display: none;

	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: var(--main-footer-mobile-height);
	flex-direction: column;
	background-color: var(--primary-custom-color);
}

#kta_vue_wrapper .main-footer.mobile .page-nav {
	display: flex;
	width: 100%;
	height: 30px;
	padding: 0 10px;
}

#kta_vue_wrapper .main-footer.mobile .page-nav .wrapper {
	display: flex;
	width: 100%;
	align-items: center;
}

#kta_vue_wrapper .main-footer.mobile .page-nav .current-page {
	margin-right: 5px;
	color: var(--secondary-custom-color);
}
#kta_vue_wrapper .main-footer.mobile .page-nav .total-pages {
	margin-left: 5px;
	color: var(--secondary-custom-color);
}

#kta_vue_wrapper .main-footer.mobile .page-nav .slidecontainer {
	display: flex;
	flex-grow: 1;
}
/* The slider itself */
#kta_vue_wrapper .main-footer.mobile .page-nav .slidecontainer .slider {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 8px;
	margin: 0;
	border-radius: 4px;
	outline: none;
	background-color: var(--secondary-custom-color);
}
/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
#kta_vue_wrapper .main-footer.mobile .page-nav .slidecontainer .slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	border-radius: 8px;
	background-color: var(--primary-custom-color);
	border: 1px solid var(--secondary-custom-color);
	cursor: pointer;
}
#kta_vue_wrapper .main-footer.mobile .page-nav .slidecontainer .slider::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border-radius: 8px;
	background-color: var(--primary-custom-color);
	border: 1px solid var(--secondary-custom-color);
	cursor: pointer;
}

#kta_vue_wrapper .main-footer.mobile .menu-nav { 
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
#kta_vue_wrapper .main-footer.mobile .menu-nav ul li:not(:last-child) {
	margin-right: 13px;
}


/*#endregion ================= MOBILE-FOOTER  ================= */


/*#region ================= CREDITS ================= */

#kta_vue_wrapper .credits_button {
	position: absolute;
	z-index: 11;
	bottom: 10px;
	left: 10px;
				
	display: flex;
	align-items: center;
	justify-content: center;
	height: 28px;
	width: 28px;

	background-color: transparent;
	border: none;
	cursor: pointer;	
}

#kta_vue_wrapper .credits_container {
	position: absolute;
	z-index: 10;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	width: 30%;
	height: 20%;
}

#kta_vue_wrapper .credits_backdrop {
	position: fixed;
	top: 0;
	bottom: 0;
	height: 100vh;
	width: 100vw;
	background-color: transparent;
}

#kta_vue_wrapper .credits_container .credits_wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding-bottom: 45px;
	background-color: var(--main-color);
}

#kta_vue_wrapper .credits_container .credits_wrapper button {
	position: absolute;
	top: 5px;
	right: 5px;
	height: var(--menu-btn-mobile-height);
	width: var(--menu-btn-mobile-width);
	background-color: transparent;
	border: none;
	color: var(--secondary-color);
	font-size: 20px;
	cursor: pointer;
}

/*#endregion ================= MOBILE - CREDITS  ================= */


/*#region ================= Section Container  MOBILE + DESKTOP ================= */

#kta_vue_wrapper .kta__module_container .section_container {
	position: relative;
	width: 100%;
	height: 100%;
}

/* MOBILE */
#kta_vue_wrapper .kta__module_container .section_container .section--header-mobile {
	height: var(--secondary-header-mobile-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 10px;
	background-color: var(--primary-custom-color);
}
#kta_vue_wrapper .kta__module_container .section_container .section--header-mobile .section--title { 
	font-size: 14px;
	color: var(--secondary-custom-color);
}
#kta_vue_wrapper .kta__module_container .section_container .section--header-mobile .section--close {
	height: 100%;
	background-color: transparent;
	border: none;
}
#kta_vue_wrapper .kta__module_container .section_container .section--header-mobile .section--close i {
	font-weight: bold;
	font-size: 14px;
	color: var(--secondary-custom-color);
}
#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile {
	height: calc(100% - var(--secondary-header-mobile-height));
	overflow-y: auto;
}
/* end of MOBILE */


/* DESKTOP */
#kta_vue_wrapper .kta__module_container .section_container .section--header-desktop {
	height: var(--secondary-header-desktop-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 20px;
	background-color: transparent;
}

#kta_vue_wrapper .kta__module_container .section_container .section--header-desktop .section--options { 
	display: flex;
	align-items: center;
	gap: 24px;
}
#kta_vue_wrapper .kta__module_container .section_container .section--header-desktop .section--options .section--title {
	font-size: 18px;
	color: var(--secondary-custom-color);
}
#kta_vue_wrapper .kta__module_container .section_container .section--header-desktop .section--options .section--option {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 10px;
	gap: 13px;
	border: 1px solid var(--secondary-custom-color);
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 0.2);
	font-family: inherit;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}
#kta_vue_wrapper .kta__module_container .section_container .section--header-desktop .section--options .section--option i {
	font-size: 22px;
	color: var(--secondary-custom-color);
	transition: all 0.3s ease-in-out;
}
#kta_vue_wrapper .kta__module_container .section_container .section--header-desktop .section--options .section--option span {
	font-size: 14px;
	color: var(--secondary-custom-color);
	text-transform: uppercase;
	line-height: 1;
	transition: all 0.3s ease-in-out;
}

#kta_vue_wrapper .kta__module_container .section_container .section--header-desktop .section--options .section--option:hover,
#kta_vue_wrapper .kta__module_container .section_container .section--header-desktop .section--options .section--option.active {
	background-color: var(--secondary-custom-color);
}
#kta_vue_wrapper .kta__module_container .section_container .section--header-desktop .section--options .section--option:hover i,
#kta_vue_wrapper .kta__module_container .section_container .section--header-desktop .section--options .section--option:hover span,
#kta_vue_wrapper .kta__module_container .section_container .section--header-desktop .section--options .section--option.active i,
#kta_vue_wrapper .kta__module_container .section_container .section--header-desktop .section--options .section--option.active span  {
	color: var(--tertiary-custom-color);
}

#kta_vue_wrapper .kta__module_container .section_container .section--header-desktop .section--close {
	height: 100%;
	background-color: transparent;
	border: none;
	cursor: pointer;
}

#kta_vue_wrapper .kta__module_container .section_container .section--header-desktop .section--close i {
	font-weight: bold;
	font-size: 20px;
	color: var(--secondary-custom-color);
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-desktop {
	height: calc(100% - var(--secondary-header-desktop-height));
	overflow-y: auto;
}
/* end of DESKTOP */

/*#endregion ================= Section Container ================= */



/*#region ================= DESKTOP - Download ================= */

#kta_vue_wrapper .kta__module_container .section_container .section--content-desktop .download--wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	gap: 27px;
}
#kta_vue_wrapper .kta__module_container .section_container .section--content-desktop .download--wrapper .download--image-preview { 
	width: auto;
	height: 70vmin;
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-desktop .download--wrapper .download--action {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 4px 10px;
	gap: 10px;
	background: var(--secondary-custom-color);
	border: 1px solid var(--secondary-custom-color);
	border-radius: 10px;
	font-family: inherit;
	cursor: pointer;
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-desktop .download--wrapper .download--action i {
	font-size: 22px;
	color: var(--tertiary-custom-color);
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-desktop .download--wrapper .download--action span {
	font-size: 14px;
	color: var(--tertiary-custom-color);
	text-transform: uppercase;
}


/*#endregion ================= DESKTOP - Download ================= */



/*#region ================= MOBILE - Download ================= */

#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .download-wrapper {
	display: flex;
	flex-direction: column;
	/* height: 100%; */
	padding: 10px 0;
	justify-content: center;
	align-items: center;
}
#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .download_item {
	display: flex;
	flex-direction: column;
}
#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .download_item:not(:last-of-type) {
	margin-bottom: 40px;
}
#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .download_item .download_item--action {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0;
	background-color: transparent;
	border: none;
	font-size: 14px;
	color: #000000;
	font-family: inherit;
}
#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .download_item .download_item--image {
	height: 220px;
	width: auto;
	min-width: 150px;
	background-color: #d9d9d9;
	margin-bottom: 10px;
}

/*#endregion ================= MOBILE - Download ================= */



/*#region ================= MOBILE - Share ================= */

#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .share-wrapper {
	display: flex;
	flex-direction: column;
	/* height: 100%; */
	padding: 10px 0;
	justify-content: space-evenly;
	align-items: center;
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .share-wrapper .share-options {
	display: flex;
	width: 100%;
	justify-content: space-evenly;
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .share-wrapper .share-options .share-option {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .share-wrapper .share-options .share-option img {
	height: 130px;
	width: auto;
	min-width: 90px;
	margin-bottom: 5px;
	background-color: #d9d9d9;
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .share-wrapper .share-options .share-option input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	margin-bottom: 5px;
	border-radius: 50%;
	background: #D9D9D9;
	border: 4px solid #CDCDCD;
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .share-wrapper .share-options .share-option input[type="radio"]:checked {
	background: #605E5E;
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .share-wrapper .share-options .share-option p {
	margin: 0;
	color: #000000;
	font-size: 14px;
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .share-wrapper .share-types {
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .share-wrapper .share-types .wrapper {
	display: flex;
	width: 100%;
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .share-wrapper .share-types .share-type {
	display: flex;
	flex-direction: column;
	color: var(--secondary-custom-color);
	align-items: center;
	font-size: 12px;
	margin: 24px;
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .share-wrapper .share-types .share-type .share-type--action {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 85px;
	height: 85px;
	padding: 0;
	background-color: var(--main-color);
	border: 1px solid var(--secondary-custom-color);
	border-radius: 5px;
	margin-bottom: 5px;
	font-size: 50px;
	color: var(--secondary-custom-color);
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .share-wrapper .share-copy .share-copy--action {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 7px;
	width: fit-content;
	padding: 8px;
	height: 36px;
	margin: 0;
	background-color: var(--main-color);
	border: 1px solid var(--secondary-custom-color);
	border-radius: 5px;
	font-size: 12px;
	color: var(--secondary-custom-color);
	font-family: inherit;
}
#kta_vue_wrapper .kta__module_container .section_container .section--content-mobile .share-wrapper .share-copy .share-copy--action i {
	font-size: 15px;
	font-weight: bold;
}

/*#endregion ================= MOBILE - Share ================= */



/*#region ================= DESKTOP - Share ================= */

#kta_vue_wrapper .kta__module_container .section_container .section--content-desktop .share-wrapper-desktop {
	display: flex;
	height: 100%;
	padding: 50px 0;
	justify-content: center;
	align-items: flex-start;
	gap: 100px;
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-desktop .share-wrapper-desktop .share-preview {
	display: flex;
}
#kta_vue_wrapper .kta__module_container .section_container .section--content-desktop .share-wrapper-desktop .share-preview .share--image-preview {
	height: 70vmin;
	width: auto;
	min-width: 90px;
	background-color: #d9d9d9;
}


#kta_vue_wrapper .kta__module_container .section_container .section--content-desktop .share-wrapper-desktop .share-types {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-desktop .share-wrapper-desktop .share-types .wrapper {
	display: flex;
	gap: 80px;
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-desktop .share-wrapper-desktop .share-types .share-type {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-desktop .share-wrapper-desktop .share-types .share-type .share-type--action {
	width: 135px;
	height: 135px;
	padding: 0;
	background-color: var(--main-color);
	border: 1px solid var(--secondary-custom-color);
	border-radius: 5px;
	cursor: pointer;
}

#kta_vue_wrapper .kta__module_container .section_container .section--content-desktop .share-wrapper-desktop .share-types .share-type .share-type--action i {
	font-size: 105px;
	color: var(--secondary-custom-color);
}
#kta_vue_wrapper .kta__module_container .section_container .section--content-desktop .share-wrapper-desktop .share-types .share-type .share-type--action i.icon-twitter-x {
	font-size: 90px;
}
#kta_vue_wrapper .kta__module_container .section_container .section--content-desktop .share-wrapper-desktop .share-types .share-type .share-type--name {
	font-size: 18px;
	color: var(--secondary-custom-color);
	text-transform: uppercase;
}

/*#endregion ================= DESKTOP - Share ================= */



/*#region ================= DESKTOP - PDP ================= */
#kta_vue_wrapper .kta__module_container .pdp_overlay {
	background: rgba(0, 0, 0, 0.75);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

#kta_vue_wrapper .kta__module_container .pdp_module {
	position: absolute;
	margin: auto;
	top: 5%;
	left: 0;
	right: 0;
	z-index: 3;
	width: calc(100% - 70px);
	height: 90%;
	max-height: 912px;
	max-width: 1100px;
	overflow-y: auto;
}

#kta_vue_wrapper .kta__module_container .pdp_module::-webkit-scrollbar {
	width: 11px;
	height: 2px;
}

/* Track */
#kta_vue_wrapper .kta__module_container .pdp_module::-webkit-scrollbar-track {
	background: #D9D9D9;
}

/* Handle */
#kta_vue_wrapper .kta__module_container .pdp_module::-webkit-scrollbar-thumb {
	background: var(--main-color);
	border-radius: 2px;
	border: 2px solid #D9D9D9;
}

/* Handle on hover */
#kta_vue_wrapper .kta__module_container .pdp_module::-webkit-scrollbar-thumb:hover {
	background: var(--main-color);
}

/*#endregion ================= DESKTOP - PDP ================= */


/*#region ================= CUSTOM ALERT ================= */
#kta_vue_wrapper .kta__module_container .kta__module_wrapper.custom_alert {
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
}
#kta_vue_wrapper .kta__module_container .kta__module_wrapper.custom_alert .custom_alert_overlay {
	position: absolute;
	z-index: 1;	
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0);
	opacity: 0.5;
}
#kta_vue_wrapper .kta__module_container .kta__module_wrapper.custom_alert .custom_alert_container {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	width: 363px;
	height: 183px;
	background-color: rgb(255, 255, 255);
	border-radius: 3px;
}
#kta_vue_wrapper .kta__module_container .kta__module_wrapper.custom_alert .custom_alert_container .text {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	padding: 30px 20px;
}
#kta_vue_wrapper .kta__module_container .kta__module_wrapper.custom_alert .custom_alert_container .text p {
	text-align: center;
	font-size: 18px;	
	font-family: inherit;
	color: rgb(45, 45, 45);
	
}
#kta_vue_wrapper .kta__module_container .kta__module_wrapper.custom_alert .custom_alert_container .action {
	display: flex;
	gap: 20px;
	margin: 0 auto;
	margin-bottom: 30px;
}
#kta_vue_wrapper .kta__module_container .kta__module_wrapper.custom_alert .custom_alert_container .action button {
	height: 40px;
	min-width: 120px;
	padding: 0 25px;
	border: none;
	border-radius: 5px;			
	background-color: var(--secondary-custom-color);
	text-align: center;
	font-size: 16px;
	font-family: inherit;	
	color: rgb(255, 255, 255);
	cursor: pointer;	
}

/*#endregion ================= CUSTOM ALERT ================= */


.kta_logo {
	position: fixed;
    left: 20px;
    bottom: 65px;
    width: 124px;
    height: 150px;
}

.kta_logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}


/* Animations and  Vue Transitions */
.anim-appear {
	animation: 0.3s ease-in-out elemAppear;
}
@keyframes elemAppear {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.preload-screen {
	animation: 1s ease-in-out elemDisappear;
}
.preload-logo {
	animation: 2s ease-in-out elemDisappear;
}
/* preload-logo = 2s sincronizat cu removePreloader() */
@keyframes elemDisappear {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.fade-enter-active,
.fade-leave-active {
	transition: opacity 0.3s ease-in-out;
}
.fade-enter-from,
.fade-leave-to {
	opacity: 0;
}

.slideDown-enter-active,
.slideDown-leave-active {
	transition: transform 0.4s ease-in-out;
}

.slideDown-enter-from,
.slideDown-leave-to {
	transform: translateY(-200vh);
}

.slideUp-enter-active,
.slideUp-leave-active {
	transition: transform 0.4s ease-in-out;
}

.slideUp-enter-from,
.slideUp-leave-to {
	transform: translateY(100%);
}

.slideRight-enter-active,
.slideRight-leave-active {
	transition: transform 0.4s ease-in-out;
}

.slideRight-enter-from,
.slideRight-leave-to {
	transform: translateX(-100%);
}


/*#region ================= MEDIA ================= */
@media screen and (max-width: 1023px) {
	#kta_preload_screen .background_color {
		gap: 30px;
	}
	#kta_preload_screen .background_color .client-logo-preload {
		width: 30vmin;
		height: auto;
	}
	#kta_preload_screen .background_color .dc-logo-preload {
		width: 40vmin;
		height: auto;
	}

	#kta_vue_wrapper .main-header.desktop {
		display: none;
	}
	#kta_vue_wrapper .main-header.mobile {
		display: flex;
	}
	#kta_vue_wrapper .main-footer.mobile {
		display: flex;
	}
 

	#kta_vue_wrapper .kta__module_container {
		height: calc(100% - var(--main-footer-mobile-height) - var(--main-header-mobile-height));
	}

	#kta_vue_wrapper .kta__module_container .kta_module_consultant {
		bottom: 0px;
		width: 100%;
		padding: 5px 10px;
	}

	/* credits */
	#kta_vue_wrapper .credits_button { 
		bottom: 12px;
		left: 20px;
		height: var(--menu-btn-mobile-height);
		width: var(--menu-btn-mobile-width);
	}
	#kta_vue_wrapper .credits_container {		
		width: 100%;
		height: 230px;
	}
}

/*#endregion ================= MEDIA  ================= */