/*---- iframe ---------------------------------------------------------------*/
.frame-window{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	background-color: rgba(0, 0, 0, 0.4);
}
.frame-body{
	position: relative;
	top: 1%;
	height: 98%;
	width: 98%;
	background-color: var(--kt-app-bg-color);
	border-radius: 10px !important;
	box-shadow: var(--bs-shadow-lg);
	overflow-y: auto;
}
.frame-body.container-fluid{
	width: 1800px;
	max-width: 98%;
}
.frame-body .frame-content{
	height: 94%;
}
iframe{
	width: 100%;
	height: 100%;
}
.frame-nav{
    border-bottom: 1px dashed var(--kt-app-sidebar-light-separator-color);
}

/* width */
.frame-body iframe::-webkit-scrollbar {
  width: 0px;
}
/* Track */
.frame-body::-webkit-scrollbar-track {
  background: transparent !important; 
}
/* Handle */
.frame-body::-webkit-scrollbar-thumb {
  background: var(--primary) !important;
  /*background: var(--warning-soft) !important; */
  border-radius: 10px;
  /*border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;*/
}

/* Handle on hover */
.frame-body::-webkit-scrollbar-thumb:hover {
  background: var(--primary-soft) !important;
}