:root{
  --progressbar-btn-color:#0d6efd;
  --progressbar-btn-color-hover:#1e66cf;
  --progressbar-bg-color:#f8f9fa;
  --progressbar-color:#FFFFFF;
}


/* ============ desktop view ============ */
@media all and (min-width: 992px) {
	.dropdown-menu li{
		position: relative;
	}

	.dropdown-menu .submenu{ 
		display: none;
		position: absolute;
		left:100%; top:-7px;
	}

	.dropdown-menu .submenu-left{ 
		right:100%; left:auto;
	}

	.dropdown-menu > li:hover{
		background-color: #f1f1f1;
	}

	.dropdown-menu > li:hover > .submenu{
		display: block;
	}
}	
/* ============ desktop view .end// ============ */

/* ============ small devices ============ */
@media (max-width: 991px) {
	.dropdown-menu .dropdown-menu{
			margin-left:0.7rem; margin-right:0.7rem; margin-bottom: .5rem;
	}
}

.no-active-style:active{
    color:#000;
    text-decoration:none;
    background-color:#F8F9FA;
}

.layout-window.is-loading > .no-active-style:active,.layout-window.is-loading > .no-active-style:hover{
    background-color:transparent;
}

html{
	height:100%;
}

body{
	display:block !important;
	flex-direction:column;
	min-height:100%;
	padding-bottom:0px !important;
	overflow-y:scroll;
}

body > main{
	width:100%;
}

body > main.content-wrapper{
	min-height:calc(100vh - 80px);
}

.hover.opacity-dark:hover{
	background-color:rgba(0,0,0,0.05);
}

.hover.opacity-light:hover{
	background-color:rgba(255,255,255,0.05);
}

@keyframes shine {
	to {
		background-position-x: -200%;
	}
}

.image.is-loading {
    background:#f8f9fa;
    background:linear-gradient(110deg, #f8f9fa 5%, #ffffff 15%, #f8f9fa 30%);
    background-size:200% 100%;
    animation:0.5s shine linear infinite;
}

.btn-primary.is-loading {
    background: #0d6efd;
    background: linear-gradient(110deg, #0d6efd 5%, #5995ed 15%, #0d6efd 30%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 0.5s shine linear infinite;
}

.btn-warning.is-loading {
    background: #ffc107;
    background: linear-gradient(110deg, #ffc107 5%, #fbde87 15%, #ffc107 30%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 0.5s shine linear infinite;
}

.layout-window.is-loading {
    background:linear-gradient(110deg, #fff 5%, #fdfdfd 15%, #f9f9f9 30%);
    background-size: 200% 100%;
    animation: 0.5s shine linear infinite;
}

 @keyframes blinking{
    0%{
        background-color: #06c3d1;
    }
    100%{
        background-color: #270da6;
    }
}

.blink{
    animation: blinking 1s infinite;
}

.fs-1-15em{
	font-size:1.15em;
}

.table{
	display:table;
	padding:0px;
    height:100%;
    width:100%;
}

.table-head{
	display:table-header-group;
}

.table-body{
	display:table-row-group;
}

.table-row{
	display:table-row;
}

.table-cell{
	display:table-cell;
}

.bar-buttons-wrapper{
	background-color:var(--progressbar-bg-color) !important;
}

.bar-buttons > ol > li{
    display: table-cell;
    height: 33px;        
    position: relative;
    padding: 0px;
    margin: 0px;
    text-align: center;
    background-color:var(--progressbar-btn-color);
    color:var(--progressbar-color);
}
.bar-buttons > ol > li > div{         
    position:relative;        
    line-height: 33px; /* equal to the list item's height */
    height:100%;
    width: 100%;
}
.bar-buttons > ol > li:hover{
    background-color:var(--progressbar-btn-color-hover);
    cursor: pointer;
}
.bar-buttons > ol {
    display: table;
    width: 100%;
    padding: 0px;
    margin: 0px;
    position: relative;
}
.bar-buttons > ol > li > div:after, ol > li > div:before{
    content:"";
    display:inline-block;        
    border-width: 18px;
    border-style: solid;
    width: 0px;
    height: 0px;
    left: 100%;
    top: -2px;        
    position: absolute;        
    z-index: 1;
}
.bar-buttons > ol > li > div:after{
    border-color: transparent transparent transparent var(--progressbar-bg-color);
}
.bar-buttons > ol > li > div:before{
    border-width: 16px;
    display: block;
    border-color: transparent transparent transparent var(--progressbar-btn-color);
    z-index:2;
    top:0.5px;
}

ol > li:hover > div:before{
	border-color: transparent transparent transparent var(--progressbar-btn-color-hover);
}

.progress-bar-wrapper {
	display: flex;
	align-items: center;
	overflow-x: auto;
	padding: 35px 0;
}

.progress-bar-item {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.progress-bar-circle {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	position: relative;
	transition: all 0.3s ease;
}

.progress-bar-line-container {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0 8px;
}

.progress-bar-line {
	width: 128px;
	height: 4px;
	background-color: #dee2e6;
	position: relative;
	border-radius: 2px;
}

.progress-bar-line-progress {
	height: 100%;
	background-color: #6f42c1;
	border-radius: 4px;
	transition: width 0.5s ease;
	position: absolute;
	top: 0;
	left: 0;
}

.progress-bar-name {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	font-size: 12px;
	font-weight: 500;
	color: #495057;
	background-color: white;
	padding: 4px 8px;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.demo-controls {
	margin-top: 4rem;
	text-align: center;
}

.status-badge {
	display: inline-block;
	margin: 0 4px 8px 4px;
	font-size: 12px;
}

.status-badge.completed {
	background-color: #e7d4f7;
	color: #6f42c1;
}

.status-badge.incomplete {
	background-color: #f8f9fa;
	color: #6c757d;
}

.content-wrapper{
  float:left;
  min-height:100%;
}

.form-control-dark {
  border-color: var(--bs-gray);
}
.form-control-dark:focus {
  border-color: #fff;
  box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .25);
}

.text-small {
  font-size: 85%;
}
.dropdown-toggle {
  outline: 0;
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
}

.bi {
  vertical-align: -.125em;
  fill: currentColor;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */


/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/*Chrome*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type='range'] {
      overflow: hidden;
      -webkit-appearance: none;
      background-color: transparent;
    }
    
    input[type='range']::-webkit-slider-runnable-track {
      -webkit-appearance: none;
      color: #13bba4;
      background-color:#dddddd;
    }
}

.pop-up{
	position:fixed;
	top:0px;
    left:0px;
	width:100%;
	height:100%;
	background-color:transparent;
	transition-delay:0s;
	transition-duration: 1.3s;
	transition-property:all;
}

.inline-block{
	display:inline-block;
}

.pop-up.background-layer.dark{
	background-color:rgba(0,0,0,0.4);
}

.pop-up.background-layer.light{
	background-color:rgba(255,255,255,0.4);
}

.pop-up > div{
	display:table;
	padding:0px;
	margin:0px;
	height:100%;
	width:100%;
}

.pop-up > div > div{
	display:table-row;
}

.pop-up > div > div > div{
	position:relative;
	display:table-cell;
	text-align:center;
}

.pop-up.middle > div > div > div{
	vertical-align:middle;
}

.pop-up.top > div > div > div{
	vertical-align:top;
}

.pop-up > div > div > div > *{
	display:block;
	text-align:left;
	margin-left:auto;
	margin-right:auto;
	margin-top:-100%;
	transition-duration: 1.1s;
	transition-property:all;
}

.pop-up > div > div > div > *.in{
	margin-top:0px;
}

/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
}


/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
/* rtl:begin:ignore */
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}
/* rtl:end:ignore */


/* Featurettes
------------------------- */

.featurette-divider {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
/* rtl:begin:remove */
.featurette-heading {
  letter-spacing: -.05rem;
}

/* rtl:end:remove */

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

.b-example-divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
   	border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
}

.bi {
    vertical-align: -.125em;
    fill: currentColor;
}

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

.nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: .75rem;
}

.icon-link > .bi {
  margin-top: .125rem;
  margin-left: .125rem;
  fill: currentcolor;
  transition: transform .25s ease-in-out;
}
.icon-link:hover > .bi {
  transform: translate(.25rem);
}

.icon-square {
  width: 3rem;
  height: 3rem;
  border-radius: .75rem;
}

.text-shadow-1 { text-shadow: 0 .125rem .25rem rgba(0, 0, 0, .25); }
.text-shadow-2 { text-shadow: 0 .25rem .5rem rgba(0, 0, 0, .25); }
.text-shadow-3 { text-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .25); }

.card-cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.py-2{
  background-color: #fff;
}

.top-main-menu > li{
  text-align:center;
}

.top-main-menu > li > button > i, .top-main-menu > li > a > i{
  font-size:1.9em;
}

.top-main-menu > li.settings > .dropdown-menu{
  right:0px;
}

.side-bar-menu > li > a{
  font-size:1.0em;
}

.profile-settings-menu-wrapper{
  position:fixed;
  bottom:0px;
  left:0px;
  width:280px;
  line-height:50px;
  height:50px;
  padding:0px 10px;
}

.profile-settings-menu-wrapper > hr{
  margin:0px;
}

.form-status-wrapper > ul{
	margin-bottom:0px;
}

.form-status-wrapper.processing{
	color:orange;
}

.form-status-wrapper.failed{
	font-weight:400;
    color:rgb(192, 43, 10);
    font-size:14px;
    background-color:rgb(255, 249, 249);
    border-radius:10px;
    padding:10px 10px 10px 10px;
    margin-bottom:20px;
    border:2px solid rgb(192, 43, 10);
}

.form-status-wrapper.processing{
	font-weight:400;
    color:#0f5132;
    font-size:14px;
    background-color:#f9fafb;
    border-radius:10px;
    padding:10px 10px 10px 10px;
    margin-bottom:20px;
    border:2px solid #198754;
}

.form-status-wrapper.successful{
	font-weight:400;
    color:#0f5132;
    font-size:14px;
    background-color:#f9fafb;
    border-radius:10px;
    padding:10px 10px 10px 10px;
    margin-bottom:20px;
    border:2px solid #198754;
}

.text-field > .failed, .form-control.failed{
	border-color:rgb(192, 43, 10);
}

.verification-code-wrapper.card{
	border:none;
	box-shadow: 0px 5px 20px 0px #212529;
	z-index:1;
	display:flex;
	justify-content:center;
	align-items:center;
}

.verification-code-wrapper > .inputs input{
	width:40px;
	height:40px;
}
	
.verification-code-wrapper > div > input[type=number]::-webkit-inner-spin-button, .verification-code-wrapper > div > div > input[type=number]::-webkit-outer-spin-button{
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	margin:0;
}

.verification-code-wrapper > div > .form-control:focus{
	box-shadow:none;
	border:2px solid #343a40;
}

.verification-code-wrapper > div > .validate{
	border-radius:20px;
	height:40px;
	width:140px;
}

.ellipsis{
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
}

.absolute.success{
	background-color:transparent;
	transition-delay:0s;
	transition-duration: 1.3s;
	transition-property:background-color;
}

.absolute.success.in{
	background-color:#fff;
}

.scroller{
	overflow-y:scroll !important;
	overflow-x:hidden !important;
}

/* width */
.scroller::-webkit-scrollbar {
  width:7px;
  border-radius:3.5px;
}

/* Track */
.scroller::-webkit-scrollbar-track{
	/*background:#f0f0f0;*/
}
 
/* Handle */
.scroller::-webkit-scrollbar-thumb{
  background:transparent;
  border-radius:0px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background:#D9D9D9; 
}

.scroller-x{
	overflow-y:hidden !important;
	overflow-x:scroll !important;
}

/* width */
.scroller-x::-webkit-scrollbar {
  height:2px;
}

/* Track */
.scroller-x::-webkit-scrollbar-track{
	background:transparent;
}
 
/* Handle */
.scroller-x::-webkit-scrollbar-thumb{
  background:transparent;
  border-radius:0px;
}

/* Handle on hover */
.scroller-x::-webkit-scrollbar-thumb:hover {
  background:#D9D9D9; 
}

.field-box-draggable-content {
	grid-template-columns: repeat(5, 1fr);
	padding:10px;
}

.field-box{
	padding:5px;
}

.field-box > div {
	background-color:#ddd;
	border-radius: .5em;
	padding: 10px;
	cursor: move;
}

.field-box > div.over {
	border: 3px dotted #666;
}

.form-check.box-radio{
	position:relative;
}

.form-check.box-radio > div{
	width:100%;
	padding-top:60%;
}

.form-check.box-radio > div > div{
	padding:15px;
	position:absolute;
	text-align:center;
	display:table;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.form-check.box-radio > div > div > div{
	display:table-row;
	border-radius:4px;
	/*box-shadow:0px 1px 3px 0px rgba(0,0,0,0.4);*/
}

.form-check.box-radio > div > div > div > div{
	position:relative;
	display:table-cell;
	vertical-align:middle;
}

.form-check.box-radio > div > div > div > div > input{
	position:absolute;
	margin:0;
	width:100%;
	height:100%;
	top:0;
	right:0;
	opacity:0.0;
}

.form-check.box-radio > div > div > div > div > span{
	display:block;
}

.form-check.box-radio > div > div > div > div > span > i{
	font-size:3.5em;
	color:#000;
}

.form-check.box-radio > div > div > div > div > label{
	font-size:14px;
	font-weight:200;
}

.form-check.box-radio > div > div > div > div > input:checked ~ span > i{
	color:#067FD0;
}

.form-check.box-radio > div > div > div > div > input:checked ~ label{
	font-weight:400;
	color:#000;
}

.form-check.box-radio > div > div > div:has(> div > input:checked){
	background-color:#e9ecef;
}

.input-group.nav{
	width:calc(100% - 7px);
}

.layout-menu-wrapper{
	width:320px;
	height:calc(100vh - 80px);
}

.layout-menu-wrapper.position-fixed{
	left:-320px;
	bottom:-1px;
	transition:left 0.5s ease-in-out;
}

.layout-menu-wrapper.position-absolute{
	left:-320px;
	top:0px;
	transition:left 0.5s ease-in-out;
}

.layout-menu-wrapper.position-fixed.in{
	left:0px;
}

.layout-menu-wrapper.position-absolute.in{
	left:0px;
}

.layout-builder-unit-fields{
	user-select:none;
	font-size:14px;
	border:1px solid transparent;
	line-height:24px;
	font-weight:400;
	padding:0px;
}

.layout-builder-unit-fields.over, .layout-builder-unit-fields:has(.over){
	border-style:dashed;
	border-color:#ee7784;
}

.layout-builder-unit-fields i{
	line-height:24px;
}

.starting.layout-builder-unit-fields > div, .inner-starting.layout-builder-unit-fields > div, .in-layout.layout-builder-unit-fields[data-is-table="true"] > div{
	color:#dadada;
	border-color:transparent;
}

.starting.layout-builder-unit-fields > div, .in-layout.layout-builder-unit-fields[data-field="item-title"] > div, .in-layout.layout-builder-unit-fields[data-is-table="true"] > div > table > thead > tr > th, .in-layout.layout-builder-unit-fields[data-is-table="true"] > div > table > tbody > tr > td{
	background-color:transparent;
}

.layout-builder-unit-fields > div{
	border:1px solid #e5e8ec;
	border-radius:4px !important;
	padding:7px 10px;
	background-color:#f8f9fa;
}

.layout-builder-unit-fields > div.table-responsive{
	border:none;
	border-radius:0px !important;
}

/*.layout-builder-unit-fields[data-field-type="checkbox"], .layout-builder-unit-fields[data-field-type="radio"]{
	line-height:20px;
}*/

.in-layout.layout-builder-unit-fields[data-is-table="true"] > div{
    padding:0 !important;
}

.in-layout.layout-builder-unit-fields[data-is-table="true"] > div > table{
    margin:0px;
}

.in-layout.layout-builder-unit-fields[data-field="item-image"] > div{
    border:4px solid transparent !important;
}

.layout-builder-unit-fields.in-layout[data-field='item-divider'] > div > span{
	display:none !important;
}

.layout-builder-unit-fields.in-layout[data-field='item-title'] > div, .layout-builder-unit-fields.in-layout[data-field='item-label'] > div, .layout-builder-unit-fields.in-layout[data-field='item-paragraph'] > div, .layout-builder-unit-fields.in-layout[data-field='item-placeholder'] > div,.layout-builder-unit-fields.in-layout[data-field='item-divider'] > div{
	border-color:transparent;
}

.layout-builder-unit-fields.in-layout[data-field='item-title'] > div > span > span > .bi-arrows-fullscreen, .layout-builder-unit-fields.in-layout[data-field='item-label'] > div > span > span > .bi-arrows-fullscreen, .layout-builder-unit-fields.in-layout[data-field='item-paragraph'] > div > span > span > .bi-arrows-fullscreen, .layout-builder-unit-fields.in-layout[data-field='item-placeholder'] > div,.layout-builder-unit-fields.in-layout[data-field='item-divider'] > div > span > span > .bi-arrows-fullscreen{
	opacity:0.0;
}

.layout-builder-unit-fields.in-layout[data-field='item-title']:hover > div > span > span > .bi-arrows-fullscreen, .layout-builder-unit-fields.in-layout[data-field='item-label']:hover > div > span > span > .bi-arrows-fullscreen, .layout-builder-unit-fields.in-layout[data-field='item-paragraph']:hover > div > span > span > .bi-arrows-fullscreen, layout-builder-unit-fields.in-layout[data-field='item-placeholder']:hover > div,.layout-builder-unit-fields.in-layout[data-field='item-divider']:hover > div > span > span > .bi-arrows-fullscreen{
	opacity:0.7;
}

.layout-builder-unit-fields.in-layout[data-field='item-divider'] > div{
	height:1px;
	border:none !important;
	background-color:#d7d7d7;
	border-radius:0px !important;
	padding:0px !important;
}

.layout-builder-unit-fields > div > .field-icon{
    width:40px;
    line-height: 35px;
    /*border-right:1px solid #e5e8ec;*/
    /*color:#343a40;*/
    background-color:rgba(225,225,225,0.5);
    border-top-left-radius:4px;
    border-bottom-left-radius:4px;
}

.layout-builder-unit-fields.in-layout[data-field='item-title']> div:has(> .field-icon){
	padding-left:40px;
}

.layout-builder-unit-fields > div:has(> .field-icon){
	position:relative;
	padding-left:45px;
}

* > .absolute-remove-btn{
	display:none;
	width:initial;
	padding:0px;
	margin:0px;
    top:-9px;
    right:-5px;
    color:#ee2d40;
}

*:hover > .absolute-remove-btn{
	display:block;
}

.layout-menu-wrapper:has(> div > div > input.fields:checked) > div.side-bar-menu.fields{
	display:block !important;
}

.layout-menu-wrapper:has(> div > div > input.elements:checked) > div.side-bar-menu.elements{
	display:block !important;
}

.layout-menu-wrapper:has(> div > div > input.actions:checked) > div.side-bar-menu.actions{
	display:block !important;
}

.layout-menu-wrapper:has(> div > div > input.customs:checked) > div.side-bar-menu.customs{
	display:block !important;
}

.layout-menu-selections-wrapper{
	border-bottom:1px solid #e4e9f1;
}

.layout-menu-selections-wrapper > .right{
	border-right:1px solid #e4e9f1;
}

.layout-menu > input{
	left:0;
}

.layout-menu > .caret{
	display:none;
	width:100%;
	font-size:14px;
	bottom:-9px;
}

.layout-menu:has(> input:checked) > .caret{
	display:inline-block;
}

.layout-menu > .caret > i{
	text-shadow:-0.5px -1px 0px #e4e9f1, 0.5px -1px 0px #e4e9f1;
}

.layout-menu:has(> input:checked) > div > div > div > ul > li > i, .layout-menu:has(> input:checked) > div > div > div > ul > li > span{
	color:#ee2d40 !important;
}

.layout-menu > div{
	width:100%;
	padding-top:100%;
}

.layout-menu > div > div{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
}

.layout-menu > div > div > div > ul{
	padding:0px;
}

.layout-menu > div > div > div > ul > li{
	text-align:center;
	vertical-align:middle;
}

.layout-menu > div > div > div > ul > li{
	width:100%;
	height:100%;
	padding:0px;
	line-height:10px;
}

.layout-menu > div > div > div > ul > li > i{
	font-size:1.5em;
}

.layout-menu > div > div > div > ul > li > span{
	font-size:10px;
	padding:0px;
	font-weight:400;
	padding-top:8px;
    display:inline-block;
    width:100%;
}

.add-section-box > div{
	border:1px dashed #898989;
}

.add-section-box > div:hover{
	border-color:#f1abb2;
}

.add-section-box > div:hover > span > i{
	color:#ee2d40;
}

.add-section-box > div > span > span{
	font-size:12px;
}

.layout-builder-unit-fields > span > i{
	font-size:1.4em;
}

.overlap-top-half{
	top:-9px;
}

.overlap-bottom-half{
	bottom:-17.5px;
}

.add-section-box > div > i{
	display:none;
}

.add-section-box > div:hover > i{
	display:initial;
	color:#ee2d40;
}

.layout-builder-unit-fields.in-layout:hover{
	border:1px dashed #f1abb2;
}

.layout-item-settings > div > label{
	font-size:13px;
}

.layout-field-width-wrapper > div > div > ul{
	overflow:hidden;
	border-radius:6px;
	border:1px solid #e5e8ec;
}

.layout-field-width-wrapper > div > div > ul > li{
	position:relative;
	padding:5px 0px;
	text-align:center;
	float:left;
	font-size:0.7em;
}

.layout-field-width-wrapper > div > div > ul > li.right{
	border-right:1px solid #e5e8ec;
}

.layout-field-width-wrapper > div > div > ul > li > input{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	opacity:0.0;
}

.layout-field-width-wrapper > div > div > ul > li:has(> input:checked){
	background-color:#007bff;
	color:#fff;
}

.layout-icons-wrapper{
	border:1px solid #e9ecef;
	border-radius:7px;
}

#layout-icons-wrapper .scroller{
	width:160px !important;
	height:130px;
}

.layout-icons-wrapper > div > ul > li:has(> input:checked){
	border-radius:4px;
}

.layout-icons-wrapper > div > ul > li.pink:has(> input:checked){
	background-color:#fe6f7d !important;
}

.layout-icons-wrapper > div > ul > li.yellow:has(> input:checked){
	background-color:#ffc107 !important;
}

.layout-icons-wrapper > div > ul > li.pink{
	color:#fe6f7d;
}

.layout-icons-wrapper > div > ul > li.yellow{
	color:#7a6422;
}

.layout-icons-wrapper > div > ul > li:has(> input:checked) > i{
	color:#fff;
}

.form-group > .toggle > span > i{
	font-size:1.4em;
}

.form-group > .toggle > span > i.bi-toggle-on{
	display:none;
	color:#39cc39;
}

.form-group > .toggle > span > i.bi-toggle-off{
	display:inline-block;
	color:#979797;
}

.form-group > .toggle > span > input:checked ~ i.bi-toggle-on{
	display:inline-block;
}

.form-group > .toggle > span > input:checked ~ i.bi-toggle-off{
	display:none;
}

.form-group > .toggle > label{
	font-size:0.8em;
}

.responsive-box{
	background-color:#d5d4d5;
}

.responsive-box > div{
	padding-top:100%;
}

.responsive-box > div > ul > li > i{
	font-size:5.5em;
	color:rgba(0,0,0,0.2);
}

.image-select{
	display:none;
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:35px;
	line-height:35px;
	font-size:13px;
	padding:0px 10px;
	background-color:rgba(0,0,0,0.5);
	color:#fff;
	text-align:left;
}

.responsive-box > div > ul:hover > .image-select{
	display:inline-block;
}

#media-library-scroller{
	width:100%;
	height:calc(100vh - 106px);
}

#media-library-scroller.minimize{
	width:calc(100% - 280px);
	transition-delay:0s;
	transition-duration: 0.5s;
	transition-property:all;
}

.media-library .media-item.selected{
	box-shadow:0px 0px 0px 3px #4e8be5 !important;
}

.media-file-detail-box{
	height:calc(100vh - 106px);
	margin-right:-350px;
	width:280px;
	border-left:1px solid #e7e5e5;
	transition-delay:0s;
	transition-duration: 0.5s;
	transition-property:all;
}

.media-file-detail-box.show{
	margin-right:0px;
}

.media-library-selected-image-info{
	padding:5px;
}

.media-library-selected-image-info > span, .media-library-selected-image-info > input{
	font-size:0.8em
}

.media-library-selected-image-info > label{
	font-size:0.8em;
    color:#9f9f9f;
}

.zoom-btn{
	top:5px;
	right:5px;
	color:#fff;
	background-color:rgba(0,0,0,0.5);
	border-radius:6px;
	height: 30px;
    width: 30px;
    line-height: 28px;
    text-align: center;
}

/* Base container (optional enhancements) */

/* Hide default checkbox */
.form-check-input {
  appearance: none;
  -webkit-appearance: none;
  background-color: #f0f0f0;
  border: 2px solid #ccc;
  padding: 0;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Hover and focus effects */
.form-check-input:hover {
  border-color: #999;
}
.form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(100, 149, 237, 0.4);
}

/* Checked state */
.form-check-input:checked {
  background-color: #4caf50; /* Customize color here */
  border-color: #4caf50;
}

/* Checkmark (using ::after) */
.form-check-input:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Label styling */
.form-check-label {
  vertical-align: middle;
  font-size: 16px;
  cursor: pointer;
}

/* Base container */

/* Hide native radio appearance */
.form-check-input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #f0f0f0;
  border: 2px solid #ccc;
  padding: 0;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%; /* Circle */
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* Hover and focus effects */
.form-check-input[type="radio"]:hover {
  border-color: #999;
}
.form-check-input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(100, 149, 237, 0.4);
}

/* Checked state */
.form-check-input[type="radio"]:checked {
  border-color: #4caf50;
  background-color: #4caf50;
}

/* Inner dot (custom bullet) */
.form-check-input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 4.5px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}

/* Label styling */
.form-check-label {
  vertical-align: middle;
  font-size: 16px;
  cursor: pointer;
}
