@font-face {
	font-family: Bakh;
	font-style: normal;
	font-weight: 300;
	src: url('fonts/bakh-300.woff2') format('woff');   
}

@font-face {
	font-family: Bakh;
	font-style: normal;
	font-weight: normal;
	src: url('fonts/bakh-400.woff2') format('woff2');	 
}

@font-face {
	font-family: Bakh;
	font-style: normal;
	font-weight: 600;
	src: url('fonts/bakh-600.woff2') format('woff2');	 
}
i.load-over-copy {
    border: 1px solid #c9c8bf;
    border-radius: 5px !important;
    padding: 4px 2px 0 2px !important;
    margin: 0 5px !important;
    cursor: pointer;
}
i.load-over-copy:before {
   
    color: #c0c1b5;
    transform: rotate(-45deg);
}
i.load-over-copy:hover:before {
    color: #72726d;
}
i.load-over-copy.copying {
    box-shadow: 0 0 3px #ebda0a;
    border-color: #f1ee0e;
}
#wp-admin-bar-load-over-toggle .dashicons-superhero {
	top: 1px;
}

#wp-admin-bar-load-over-toggle .dashicons-superhero:before {
	font-size: 18px;
	color: green;
}

.load-over-disabled #wp-admin-bar-load-over-toggle .dashicons-superhero:before {
	color: red;
}

#wpadminbar > #wp-toolbar > #wp-admin-bar-root-default > #wp-admin-bar-load-over-toggle .dashicons-superhero,
#wpadminbar #wp-admin-bar-load-over-toggle .dashicons-superhero,
#wpadminbar #wp-admin-bar-load-over-toggle .ab-item::before {
  margin-right: 0;
}

.load-over-no-qm #wpadminbar > #wp-toolbar > #wp-admin-bar-root-default > #wp-admin-bar-load-over-toggle .dashicons-superhero,
.load-over-no-qm #wpadminbar #wp-admin-bar-load-over-toggle .dashicons-superhero,
.load-over-no-qm #wpadminbar #wp-admin-bar-load-over-toggle .ab-item::before {
  margin-right: 6px;
}


.load-over-enabled.plugin-install-php.branch-4-6 h1 a.upload-view-toggle,
.load-over-enabled.plugin-install-php h1 a.upload,
.load-over-enabled.plugin-install-php .wp-filter,
.load-over-enabled.theme-install-php .wp-filter,
.load-over-enabled .theme-browser.content-filterable.rendered,
.load-over-enabled.theme-install-php a.browse-themes {
	display: none !important;
}

.load-over-admin {
    border-radius: 7px;
    background: white;
    padding: 11px 32px;
    margin: 25px 15px;
    box-shadow: 0 0 3px #cfcfcf;
	font-family: Bakh;
}
.load-over-admin h1 {
    text-align: center;
    margin: 30px 0 41px 0;
	    color: #4a4a4a;
}
.load-over-admin input, .load-over-admin textarea, .load-over-admin h1,.load-over-admin h2, .load-over-log h5 {
	font-family: Bakh !important;
}
.load-over-admin input#submit {
    font-weight: 500;
    padding: 7px 16px;
    background: linear-gradient(45deg, #b5cf29, #e9dd33);
    border: 0;
}
.load-over-admin-form-body {
	display: flex;
	flex-direction: row;
		gap: 20px;
}
.load-over-admin-front-end, .load-over-admin-back-end, .load-over-admin-whitelist {

	    border: 1px solid #d1d1d1;
    border-radius: 11px;
    padding: 5px 0;
    background: #f7f7f7;
	padding-bottom: 30px;
	
}
.load-over-admin-front-end-whitelist, .load-over-admin-back-end{
	width: 50%;
}
.load-over-admin-front-end-whitelist {
	gap: 40px;
}
.load-over-admin-front-end, .load-over-admin-whitelist {
	width: 100%;
	padding-bottom: 30px;
}
.textarea-wrapper {
	 display: inline-flex;
  font-size: 0.9rem;
  cursor: pointer;
      padding: 3px 24px;
    flex-direction: column;
    margin-top: 17px;
}
textarea#load-over_custom_addresses, textarea#load-over_whitelist_addresses {
    min-height: 137px;
    border: 0;
    box-shadow: 0 0 3px #ced117;
    padding: 10px;
}

.load-over-admin-form-body .checkbox-wrapper {
  display: inline-flex;
  align-items: center;
  margin: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 1px 15px;
}
.load-over-admin-form-body .checkbox-wrapper label {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
	    height: 20px;
}

.load-over-admin-form-body input[type="checkbox"] {
  /* Hide but keep it accessible */
  position: absolute !important;
  opacity: 0 !important;
  width: 0!important;
  height: 0!important;
}


.load-over-admin-form-body input[type="checkbox"] + label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 3px;          /* Flat look – no big curves */
  border: 2px solid #c1c7d0;   /* Light gray border */
  background-color: #fff;      /* White background */
  transition: background 0.2s, border-color 0.2s;
}


.load-over-admin-form-body input[type="checkbox"]:checked + label::before {
      background-color: #f5d64c;
    border-color: #bcbf71e6;
}


.load-over-admin-form-body input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 7px;
  height: 12px;
  border: solid #fff;          /* White tick */
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  /* Ensure it's on top of the pseudo‑box */
  z-index: 1;
}
.rtl .load-over-admin-form-body input[type="checkbox"]:checked + label::after {
	right: 6px;
	left: unset;
}
.rtl .load-over-admin-form-body input[type="checkbox"] + label::before {
	margin-left: 8px;
	margin-right: 0px;
}

.load-over-admin-form-body input[type="checkbox"] + label:hover::before,
.load-over-admin-form-body input[type="checkbox"]:focus + label::before {
  border-color: #f2cb6c
}


.load-over-admin-form-body input[type="checkbox"]:focus + label::before {
  box-shadow: 0 0 0 3px rgba(76, 139, 245, 0.3);
}
.load-over-admin-form-body h2, .load-over-url-admin h1, .load-over-log-admin h1 {
        background: linear-gradient(45deg, #b9ae20, #ddce079e);
    padding: 15px;
    color: white;
}
.rtl .load-over-admin-form-body h2 {
        background: linear-gradient(45deg, #ddce079e, #b9ae20);
}
.load-over-admin-whitelist h2 {
        background: linear-gradient(45deg, #ddce079e, #b9ae20);
}
.load-over-admin-front-end-whitelist {
    display: flex;
    flex-direction: column;
}
.rtl .load-over-admin-whitelist h2 {
        background: linear-gradient(45deg, #ddce079e, #b9ae20);
}

.load-over-log {
    background: linear-gradient(45deg, #ffffff, #f1f1f1);
    display: none;
    flex-direction: column;
    padding: 5px 15px;
    border: 1px solid #d5d7cc !important;
    border-radius: 7px !important;
    color: #3d4035;
	transition: 0.4s
	padding-bottom: 6px
}
.rtl .load-over-log {
        background:  linear-gradient(45deg,#f1f1f1,  #ffffff);
}
.load-over-log h5.aff {
    border-top: 1px dashed #dbdbdb;
}
.load-over-log li {
    font-size: 12px !important;
    max-width: 50vw;
    color: #686868;
	    text-overflow: ellipsis;
    text-wrap-mode: nowrap;
    overflow: hidden;
    direction: ltr;
    text-align: left;
}
.lvhover:hover .load-over-log {
	display: flex !important;
}

.load-over-log h5 {
    font-weight: bold !important;
    padding: 0 10px !important;
}
.load-over-log ul {
    display: flex;
    flex-direction: column;
    padding: 0 8px !important;
    font-size: 14px !important;
}

.load-over-log li {
    font-size: 12px;
    padding: 0 5px !important;
}

li#wp-admin-bar-load-over-toggle {
    max-width: 60px;
}

.load-over-pair input[type="text"] {
	direction: ltr;
	flex-grow: 1;
	border: 0;
    box-shadow: 0 0 3px #9f9d64;
    color: #75766d;
    padding: 4px 9px 3px;
    margin: 5px;
}

#load-over-url-pairs-container .form-table-div {
	display: flex;
    direction: ltr;
    text-align: left;
	width: 100%;

}

#load-over-url-pairs-container #load-over-url-pairs-container-tbody {
	flex-grow: 1;
		flex-direction: column;
}

#load-over-url-pairs-container table .load-over-pair {
	display: flex;
	flex-direction: row;
	align-items: center;
}

#load-over-url-pairs-container div input[type="button"] {
    border-radius: 7px;
    box-shadow: 0 0 2px #d5d4d0;
    margin: 3px;
}

button#load-over-add-pair {
	margin-top: 25px;
    background: white;
    border: 0;
    color: #d7d1d1;
    border-radius: 50%;
    padding: 10px;
    font-size: 18px;
    line-height: 18px;
    width: 40px;
    height: 40px;
    box-shadow: 0 1px 3px #a19999;
    cursor: pointer;
}

.load-over-rm-pair {
background: rgb(247 82 82);
    color: rgb(255, 255, 255);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 1px 3px #d5d4d0;
    margin: 3px;
    width: 27px;
    height: 27px;
    font-size: 15px;
    line-height: 11px;
}

.load-over-pair input[type="text"]:focus {
    border: 0;
    box-shadow: 0 0 6px #d7d01 !important;
}
.load-over-pair input[type="text"]::placeholder {
	color: #b8b9b3;
}
.load-over-pair {
	align-items: center;
    display: flex;
}

.load-over-url-admin .checkbox-wrapper {
  display: inline-flex;
  align-items: center;
  margin: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 1px 15px;
}
.load-over-url-admin .checkbox-wrapper label {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
	    height: 20px;
}

.load-over-url-admin input[type="checkbox"] {
  /* Hide but keep it accessible */
  position: absolute !important;
  opacity: 0 !important;
  width: 0!important;
  height: 0!important;
}


.load-over-url-admin input[type="checkbox"] + label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 3px;          /* Flat look – no big curves */
  border: 2px solid #c1c7d0;   /* Light gray border */
  background-color: #fff;      /* White background */
  transition: background 0.2s, border-color 0.2s;
}


.load-over-url-admin input[type="checkbox"]:checked + label::before {
      background-color: #f5d64c;
    border-color: #bcbf71e6;
}


.load-over-url-admin input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 7px;
  height: 12px;
  border: solid #fff;          /* White tick */
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  /* Ensure it's on top of the pseudo‑box */
  z-index: 1;
}
.rtl .load-over-url-admin input[type="checkbox"]:checked + label::after {
	right: 6px;
	left: unset;
}
.rtl .load-over-url-admin input[type="checkbox"] + label::before {
	margin-left: 8px;
	margin-right: 0px;
}

.load-over-url-admin input[type="checkbox"] + label:hover::before,
.load-over-url-admin input[type="checkbox"]:focus + label::before {
  border-color: #f2cb6c
}


.load-over-url-admin input[type="checkbox"]:focus + label::before {
  box-shadow: 0 0 0 3px rgba(76, 139, 245, 0.3);
}
.load-over-log {
    user-select: content;
    
    cursor: default;
}

.logger-show {
    
	direction: ltr;
	min-height: 250px;
	    border: 1px solid #e5e1e1;
		    font-family: monospace !important;
    font-size: 12px;
	    border-radius: 7px;
    padding: 10px 17px;
    background: #444444;
    color: white;
    line-height: 21px;
}
.server-interneted, .client-interneted {
    display: flex;
    flex-direction: row;
    gap: 20px;
	justify-content: space-between;
	align-items: center;
}
.load-over-status-container {
    border: 2px solid #696969;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 15px;
}
.not-connected {
    padding: 4px 7px;
    background: #fb3042;
    border-radius: 5px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 13px;
}
.connected {
    padding: 4px 7px;
    background: #6cec4b;
    border-radius: 5px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 13px;
}
.load-over-url-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.load-over-local-btn {
    padding: 5px 10px;
    background: #2196F3;
    color: white;
    border-radius: 5px;
    box-shadow: 0 0 3px #33ad2a7a;
    cursor: pointer;
}
.load-over-popup {
    position: fixed;
	display: none;
	justify-content: center;
	align-items: center;
    width: 100%;
    height: 100%;
    background: #3c3c3c3b;
    top: 0;
    right: 0;
	flex-wrap: wrap;
    z-index: 9999;
}
.load-over-popup-section {
    max-width: calc(100% - 50px);
    max-height: calc(100% - 80px);
    width: 600px;
    min-height: 300px;
    border-radius: 10px;
    box-shadow: 0 0 3px gray;
    display: flex;
    background: white;
    flex-direction: column;
}
.load-over-popup-header {
    height: 40px;
    background: linear-gradient(45deg, #b9ae20, #ddce079e);
    border-radius: 10px 10px 0 0;
	    display: flex;
    align-items: center;
}
.d-flex {
	display: flex;
}
.load-over-popup-body {
    display: flex;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
	    padding: 20px 12px;
		    flex-direction: column;
}
.load-over-close {
	cursor: pointer;
	fill: white;
}
.load-over-close svg {
    margin: 10px 12px;
	margin-left: 5px;
    margin-top: 7px;
}
.load-over-popup-body ul {
    margin: 0;
    border-top: 1px dashed gray;
    margin-top: 5px;
}

.load-over-popup-body ul li {
    margin: 6px 0;
	text-overflow: ellipsis;
    text-wrap-mode: nowrap;
    direction: ltr;
    text-align: left;
}
.load-over-popup-body i.load-over-copy {

    padding: 4px 2px 0 2px !important;
}	
.load-over-popup-body i.load-over-copy:before {
    padding: 0px 0px 0 0;

}
.load-over-log li span {
	user-select: all;
}
i.load-over-copy {
    width: 20px !important;
    height: 20px !important;
    display: block;
}
.load-over-log li, .load-over-popup-body li {
   
    align-items: center;
    display: flex;
}
span.load-over-on {
    width: 16px;
    display: block;
    height: 16px;
    border-radius: 50%;
    background: #37e737;
    box-shadow: 0 0 3px #d3f70fe6;
}
span.load-over-off {
    width: 16px;
    display: block;
    height: 16px;
    border-radius: 50%;
    background: #f24235;
    box-shadow: 0 0 3px #d3f70fe6;
}
p.load-over-is-active {
    display: flex;
    gap: 6px;
    align-items: center;
    width: fit-content;
    padding: 5 10px;
    border-radius: 16px;
    
    color: #676767;

}
.load-over-inline-toggle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.load-over-active-btn {
    display: block;
    background: #f7f7f7;
    color: #707070;
    padding: 5px 10px;
    border-radius: 7px;
    text-decoration: none;
    border: 1px dashed;
}
#wp-admin-bar-load-over-toggle span.ab-label {
position: absolute;
    right: 40;
}
.lvhover:hover .load-over-log {
    max-height: max-content;
    padding-bottom: 7px !important;
}
#wp-admin-bar-load-over-toggle > a {
    padding-left: 22px !important;
}