/*---- iframe ---------------------------------------------------------------*/
:root{
		--shadow-sm : 0 .125rem .25rem rgba(0,0,0,.075) !important;
  	--shadow : 0 .5rem 1rem rgba(0,0,0,.15) !important;
  	--shadow-lg : 0 1rem 3rem rgba(0,0,0,.175) !important;
  	--success-shadow: 0 0 0 .2rem rgba(72,180,97,.3);
  	--danger-shadow: 0 0 0 .2rem rgba(255, 68, 68, .4) !important;
  	--success-shadow: 0 0 0 .2rem rgba(72,180,97,.3);
}

.frame-window{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	/*background-color: rgba(0, 0, 0, 0.2);*/
	background-color: rgba(245, 245, 246, 1.0);
}
.frame-body{
	position: relative;
	top: 1%;
	height: 98%;
	width: 100%;
	background-color: #fff;
	border-radius: 30px;
	box-shadow: var(--shadow-sm);
	overflow-y: hidden;
}

.close-iframe.position-fixed{
	top:1.2%;
	left: 1%;
}
@media (max-width: 1920px) {
	.frame-body.container{
		width: 1920px;
		max-width: 100%;
	}
	.frame-body{
		top: 0;
		height: 100%;
		border-radius: 0px;
	}
	.close-iframe.position-fixed{
		left: 0%;
		right: 55%;
	}
}

.frame-body.container-fluid{
	width: 1800px;
	max-width: 98%;
}
.frame-body .frame-content{
	height: 100%;
	margin: auto;
	overflow-y: auto;
	background-color: #fff;
}
iframe{
	width: 100%;
	height: 100%;
}
.frame-nav{
		background-color: #fff;
}
.frame-nav .page-heading{
		color: #000000;
		box-shadow: var(--shadow-sm) !important;
}
.frame-close{
	position: fixed;
	z-index: 1500;
	left: -5px;
	top: -5px;
}
.frame-close-x{
	/*margin-top: 5px;
	margin-left: 3px;*/
	display: flex;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	line-height: 20px;
	font-size: 1.5rem;
	/*background-color: rgba(25, 148, 255,0.1);
	//color: rgba(25, 148, 255,1);
	color: #000000;*/
}
.btn-rounded-circle{
	display: flex;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	line-height: 20px;
	font-size: 1.5rem;
}
.btn-rounded-circle.position-fixed{
	z-index: 9999;
}
.btn-rounded-circle.position-fixed.left-0{
	left: 1%;
	top: 15px;
}
@media (max-width: 768px) {
	::-webkit-scrollbar {
	  width: 0px;
	}
	.frame-body{
		max-width: 100%;
		height: 100%;
	}
	.frame-body .frame-content{
		height: 100%;
	}
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}
.frame-content::-webkit-scrollbar {
  width: 0px;
}
.frame-body::-webkit-scrollbar {
  width: 0px;
}
nav::-webkit-scrollbar {
  width: 0px;
}

@media (max-width: 768px) {
    .frame-content::-webkit-scrollbar {
      width: 0px;
    }
    .frame-body{
        max-width: 100%;
    }
}

/* Track */
::-webkit-scrollbar-track {
  /*background: transparent !important; */
	background-color: #ffffff;
}
 
/* Handle */
::-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;*/
	background-color: rgba(25, 148, 255,0.1);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background-color: rgba(25, 148, 255,1);
  /*background: var(--primary-soft) !important;*/
}

.text-hover-primary:hover{}
	/*color: var(--primary) !important;}*/
/*label.bg-danger.text-white.active{
	background-color: var(--danger) !important;
	color: #fff !important;
}*/
.overlay-layer{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}