@CHARSET "UTF-8";

body {
  font-family: "Franklin Gothic Book", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";;
}
h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
  font-family: "Franklin Gothic Book", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}
.h3, h3 {
	font-size: 1.5em;
}

body { font-size: .888rem; }

ol, ul, li { margin: 0; padding: 0; }
ul li {	list-style-type: none; }

:focus {
    outline: -webkit-focus-ring-color auto 0px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #F5F5F5;
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  background-color: #B0C2CC;
  border: 2px solid #B0C2CC;
  border-radius: 10px;
}


button:focus {
    outline: 1px dotted;
    outline: 0px auto -webkit-focus-ring-color;
}
.btn-primary {
    min-width: 100px;
}
.navbar-light .navbar-toggler {
    color: rgba(0,0,0,.5);
    border-color: rgba(0,0,0,0);
}

.navbar-light .navbar-toggler-icon {
    background-image: none;
}

a.navbar-brand span {
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
	vertical-align: middle;
    font-weight: 900;
    color: #007bff;   
}

/* home */
.brand-text {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    vertical-align: middle;
    font-weight: 900;
    color: #007bff;
}
.cover-border {
    height: calc(100vh - 30px);
    margin: 15px 15px 0 15px;
}
.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}
.product-device {
    position: absolute;
    right: 10%;
    bottom: -30%;
    width: 300px;
    height: 540px;
    background-color: #333;
    border-radius: 21px;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
}
.product-device::before {
    position: absolute;
    top: 10%;
    right: 10px;
    bottom: 10%;
    left: 10px;
    content: "";
    background-color: rgba(255, 255, 255, .1);
    border-radius: 5px;
}
.product-device-2 {
    top: -25%;
    right: auto;
    bottom: 0;
    left: 5%;
    background-color: #e5e5e5;
}

/**forms styles**/

input:not([type="checkbox"]), select {
	min-width: 160px;
	margin: 1px;
    padding: 10px 4px 10px;
    border-radius: 0.36em;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(169, 169, 169, 0.2);
}
input:focus, select:focus, textarea:focus {
    outline-offset: 0;
    outline: -webkit-focus-ring-color auto 0px;
    border: 1px solid rgba(0, 123, 255, 0.5);
}

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
    position: relative;
    display: inline-block;
    border: 1px solid #a9a9a9;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}

#search_form input:not([type="checkbox"]), #search_form select, #ov_search_form input:not([type="checkbox"]), #ov_search_form select {
	min-width: auto;
}

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

table select {
	min-width: auto;
}

/***********/

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type='checkbox'],
  input[type='radio'] {
    --active: #007bff;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, .3);
    --border: #BBC1E1;
    --border-hover: #007bff;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    -webkit-transition: background .3s, border-color .3s, box-shadow .2s;
    transition: background .3s, border-color .3s, box-shadow .2s;
  }
  input[type='checkbox']:after,
  input[type='radio']:after {
    content: '';
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
  }
  input[type='checkbox']:checked,
  input[type='radio']:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  input[type='checkbox']:disabled,
  input[type='radio']:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: .9;
  }
  input[type='checkbox']:disabled:checked,
  input[type='radio']:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  input[type='checkbox']:disabled + label,
  input[type='radio']:disabled + label {
    cursor: not-allowed;
  }
  input[type='checkbox']:hover:not(:checked):not(:disabled),
  input[type='radio']:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  input[type='checkbox']:focus,
  input[type='radio']:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  input[type='checkbox']:not(.switch),
  input[type='radio']:not(.switch) {
    width: 21px;
  }
  input[type='checkbox']:not(.switch):after,
  input[type='radio']:not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type='checkbox']:not(.switch):checked,
  input[type='radio']:not(.switch):checked {
    --o: 1;
  }
  input[type='checkbox'] + label,
  input[type='radio'] + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }

  input[type='checkbox']:not(.switch) {
    border-radius: 7px;
  }
  input[type='checkbox']:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    -webkit-transform: rotate(var(--r, 20deg));
            transform: rotate(var(--r, 20deg));
  }
  input[type='checkbox']:not(.switch):checked {
    --r: 43deg;
  }
  input[type='checkbox'].switch {
    width: 38px;
    border-radius: 11px;
  }
  input[type='checkbox'].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    -webkit-transform: translateX(var(--x, 0));
            transform: translateX(var(--x, 0));
  }
  input[type='checkbox'].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  input[type='checkbox'].switch:disabled:not(:checked):after {
    opacity: .6;
  }

  input[type='radio'] {
    border-radius: 50%;
  }
  input[type='radio']:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    -webkit-transform: scale(var(--s, 0.7));
            transform: scale(var(--s, 0.7));
  }
  input[type='radio']:checked {
    --s: .5;
  }
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dae5ee;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/*select{
	padding: 10px 4px 10px;
    border-radius: 0.36em;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(169, 169, 169, 0.28);
}*/


.nav-link i.fa-2x {
    font-size: 1.3em;
}

.plainHead td, .squareHead td, .squareSubHead td {
	text-align: center;
	height: 25px;
	font-weight: bold;
	color: #343333;
	margin: 0;
	padding: 0 3px 0 4px;
	vertical-align: middle;
}

.plainHead {background-color: #DBE6EE;}
.plainHead td{border-top:1px solid #B0C2CC;border-right:1px solid #B0C2CC;border-bottom:1px solid #B0C2CC;padding: 4px}
.plainHead td.left {border-left:1px solid #B0C2CC;}
.plainHead td.right {border-right:1px solid #B0C2CC;}

.squareHead td{border-top:1px solid #B0C2CC;border-right:1px solid #B0C2CC;border-bottom:1px solid #B0C2CC;padding: 4px; background-color: #bfd5e7;}
.squareHead td.left {border-left:1px solid #B0C2CC;}
.squareHead td.right {border-right:1px solid #B0C2CC;}
.squareSubHead td{border-bottom:1px solid #B0C2CC;border-right:1px solid #B0C2CC;border-bottom:1px solid #B0C2CC;padding: 4px;background-color: #dae5ee;}
.squareSubHead td.left {border-left:1px solid #B0C2CC;}
.squareSubHead td.right {border-right:1px solid #B0C2CC;}

.SectionHeader {margin: 20px 0px 10px; text-align: left;}

.actionSec {margin: 30px 0px;}

#seresult{	text-align: left;}
#seresult A{	font-size: 12px;	margin:0px;	}
#seresult P{	margin:4px 0px 4px 0px;	}
#seresult label{	color: #239123;	margin:0px;	}

.error {color: #da3838;}
.success{color: green;}

#left_menu_sec{padding: 0 2px 0px 0px;}
#left_menu_sec .navbar{padding: 0px;}
#left_menu_sec .navbar-toggler{margin: 4px; border-color: rgba(0, 0, 0, 0); outline: 0;}
#left_menu_sec .navbar-nav{width: 100%;}
#menu {width: 100%; /*margin-left: 1px;border-top: 1px solid transparent;*/}
#menu li {
	padding-left: 2px;
	background-color: #fefefe;
	cursor: pointer;
}
#menu a {
	text-decoration: none;
}
#menu a:focus {	outline: none;}
.tab {
	border-left: 1px solid #CFCFCF;
    border-right: 1px solid rgba(207, 207, 207, 0.4);
    border-bottom: 1px solid rgba(207, 207, 207, 0.4);
    color: #808080;
    padding: 16px 4px;
    font-weight: 900;
}

.tab a {
	color: #555753;
}
#subui li {
    background-color: #f8fafc;
    border-left: 1px solid #f8fafc;
    border-right: 1px solid rgba(176, 194, 204, 0.16);
    /* border-bottom: 1px solid rgba(176, 194, 204, 0.3); */
    padding: 9px 4px 9px 12px;
}
#subui a {
	font-size: 14px;
	font-weight: normal;
	color: #2e3436;
}
#subui a:hover {
  	color: #007bff;}

/*#subui a.menu_active:after,*/ #subui a:hover:after{
  	font-weight: 400;
  	content: "\f105";
    margin-left: 4px;
    margin-right: 8px;
  	float: right;
  	color: rgba(0, 123, 255, 0.5)
}

#subui a.menu_active{font-weight: bold;color: #007bff;}

.search {margin: 20px 0px;}
.search th{text-align: right;}
.search td{text-align: left; padding: 2px 6px;}
.search A {	text-decoration: none;	/*background-color: white;*/}
.search a:focus {	outline: none;}

#loading_rankarea {
	width: 100px;
	height: 20px;
	background: url('../images/ajax-loader-small.gif') center center no-repeat;
	z-index: 5;
	margin: auto;
}

#loading_longthin {
	margin: 5px;
	width: 700px;
	height: 20px;
	background: url('../images/ajax-loader.gif') center center no-repeat;
	z-index: 5;
}

#loading_content {
	width: 700px;
	height: 350px;
	background: url('../images/ajax-loader.gif') center center no-repeat;
	z-index: 5;
	margin: auto;
}

#loading_subcontent {
	width: 732px;
	height: 350px;
	background: url('../images/ajax-loader.gif') center center no-repeat;
	z-index: 5;
	margin: 10px auto 0px auto;
}

#loading_subcontmed {
	width: 732px;
	height: 100px;
	background: url('../images/loader.gif') center center no-repeat;
	z-index: 5;
	margin: 10px auto 0px auto;
}

#loading_content_frame {
	width: 700px;
	height: 300px;
	background: url('../images/ajax-loader.gif') center center no-repeat;
	z-index: 5;
}

.pagingdiv {
  width: 320px;
  margin-top: 10px;
  margin-left: 10px;
  margin: 10px 0 10px 10px;
  text-align: left;
}

.pagingdiv a:hover {
	background-color: white;
	color: black;
}

.green{color: #00903B;}
.red {color: #990000;}

.note{
    margin-top: 40px;
    text-align: center;
    background-color: #F4F7FA;
    vertical-align: middle;
    /* border: 1px solid #B0C2CC; */
    /* min-height: 48px; */
    /* line-height: 48px; */
    height: auto !important;
    padding: 6px 4px 4px 4px;
}

.note A:HOVER{	
	color:#000000;
}

.notesuccess{
	text-align: left;
	color: green;
}

.noteleft{
	text-align: left;
	color: black;
}

.notefailed{
	text-align: left;
	color: #da3838;
}

.dirmsg{
	margin-top: 15px;
	background-color: #F4F7FA;
	vertical-align: middle;
	border: 1px solid #B0C2CC;
	padding: 2px 2px 2px 4px;
}

.dirmsg .error{	
	color: #da3838;
}

.dirmsg .success{
	color: green;
}

.summary{	border: 1px solid #B0C2CC;}
.summary td, .summary th{padding: 2px 5px; height: 30px;}
.summary .topheader {
	background-color: #dae5ee;
	color: #000000;
	margin: 0;
	padding: 1px 1px 1px 1px;
	font-weight: bold;
	border: none;
	text-align: center;
}
.summary .subheader {
	background-color: #ECF3FA;
	color: #000000;
	margin: 0;
	padding: 1px 1px 1px 5px;
	font-weight: bold;
	border-left: 1px solid #B0C2CC;
	text-align: center;
}
.summary .subheaderdark {
	background-color: #BFD5E7;
	color: #000000;
	margin: 0;
	padding: 1px 1px 1px 5px;
	font-weight: bold;
	border-left: 1px solid #B0C2CC;
	text-align: center;
}
.summary .content {
	color: #000000;
	margin: 0;
	padding: 1px 1px 1px 5px;
	text-align: left;
	border-left: 1px solid #B0C2CC;
	border-top: 1px solid #B0C2CC;
}
.summary .contentmid {
	color: #000000;
	margin: 0;
	padding: 1px 1px 1px 5px;
	text-align: center;
	border-left: 1px solid #B0C2CC;
	border-top: 1px solid #B0C2CC;
}

fieldset {
	margin: 10px 0px;
	border-bottom: 1px gray dotted;
}

legend {
	color: #445566;
	font-size: 22px;
	margin-top: 6px;
}

legend:before, .infobox h1:before, #subui a:before, legend:after, .infobox h1:after, #subui a:after{
  font-family: "Font Awesome 5 pro";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

legend:before{
  font-weight: 900;
  content: "\f0c9";
  margin-right: 4px;
}

#home_screen legend {display: none;}
#home_screen, #support_screen {
	margin: 14px;
	border: 3px solid #f1f1f1;
	padding: 0px 26px;
	background: #f0efef;
}
#support_screen fieldset{border-bottom: 1px gray dotted;}
#home_screen fieldset:last-child, #support_screen fieldset:last-child {border-bottom: none;}
.infobox br{display: none;}

A.actionbut{
	cursor: pointer;
    font-size: 15px;
    /* font-weight: bold; */
    margin-bottom: 4px;
    padding: 8px 18px 8px;
    text-align: center;
    width: auto !important;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    display: inline-block;
    font-weight: 400;
    text-transform: capitalize;
    vertical-align: middle;
    border: 1px solid transparent;
    -webkit-user-select: non;
    user-select: none;
    line-height: 1.3;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.infobox h1{
	color: #445566;
	font-size: 18px;
	margin: 20px 0px;
}

.infobox h1:before{
  font-weight: 900;
  content: "\f0a4";
  margin-right: 4px;
}

#welcome_msg h1:before{content: none}

.infobox b{
	font-weight: normal;	
}

.selectmenu { width: 234px;}
.selectmenu #round_content {min-height: 422px;}

A.graphicon{
	background: url(../../../images/graph.gif) 2px 5px no-repeat;
	padding-left:16px;
	padding-top:6px;
	text-decoration:none;
}

.summary_tab {
	margin-top: 5px;
	border: 1px solid #B0C2CC;
}

.summary_tab .topheader {
	background-color:#DAE5EE;
	color:#000000;
	font-size:13px;
	font-weight:bold;
	margin:0;
	padding:1px;
	text-align:center;
	height:30px;
	border: none 0px;
}

.summary_tab th {
	background-color:#ECF3FA;
	border-left:1px solid #B0C2CC;
	border-top:1px solid #B0C2CC;
	color:#000000;
	font-size:11px;
	font-weight:bold;
	margin:0;
	padding:1px 1px 1px 5px;
	text-align:right;
	height:30px;
}

.summary_tab td {
	border-left:1px solid #B0C2CC;
	border-top:1px solid #B0C2CC;
	color:#000000;
	font-size:11px;
	margin:0;
	padding:1px 1px 1px 5px;
	text-align:center;
	height:30px;
}

.summary_tab th.leftcell {
	border-left: none;
}

.summary A { text-decoration: none;}

#subcontmed{
	/*border:1px solid #B0C2CC;*/
	text-align: center;
	padding: 10px;
}

.report_head {
	font-size:12px;
	margin:40px 0 0 0;
}

.report_head .pagingdiv {
	padding-bottom:0;
	padding-top:5px;
}

.report_head div {
	font-size:13px;
	margin-bottom:10px;
	margin-left:10px;
	width:100%;
}

#sortLink { text-decoration: none;color: black;}
#sortLink:HOVER { text-decoration: underline;background-color: #bfd5e7;}
.sort_asc{background:transparent url(../../../images/sort_asc.gif) no-repeat scroll right center;padding-right: 18px;}
.sort_desc{background:transparent url(../../../images/sort_desc.gif) no-repeat scroll right center;padding-right: 18px;}

.plus{background:transparent url(../../../images/green.png) no-repeat scroll center center;}
.minus{background:transparent url(../../../images/red.png) no-repeat scroll center center;}

.bold{font-weight: bold;}
.left {text-align: left;}
.right {text-align: right;}
.center {text-align: center;}
.back {text-decoration: none;font-size: 15px;}

input.long{width: 280px;}
input[name='from_time'], input[name='to_time'], input[name='expiry_date'], input.date_fld{width: 104px}

a.bold_link{
	text-decoration: none;
	font-weight: bold;
	font-size: 13px;
}

.speed_details {text-align: left;}
.speed_details h2{margin: 0 0 10px 0; font-size: 14px;}
.speed_details h3{margin: 10px 0px;}
.speed_details .score{background-color: #F0F0F0; width: 200px; margin: 20px 0px; padding: 8px;}
.speed_details .score_val, .speed_details .imapct_area, .speed_details .url_area{margin: 8px 0;}

div.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

div.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-weight: bolder;
    font-size: 16px;
}

div.tab button:hover {	background-color: #ddd;}
div.tab button.active {	background-color: #ccc;}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

#cust_tab, .list {
    border-collapse: collapse;
    width: 100%;
    margin-top: 2px;
}

#cust_tab td, #cust_tab th, .list td, .list th  {
    border: 2px solid #ffffff;
    padding: 8px;
}

#cust_tab tr:nth-child(odd), .list tr:nth-child(odd){background-color: #fbfcfd;}
#cust_tab tr:hover, .list tr:hover {background-color: #f4f7fa;}
#cust_tab th, .list .listHead td, .list .listHead th {
    text-align: left;
    background-color: #f4f7fa;
}

.list .listHead td {
	font-weight: bold;
}

.list .listBot td, .list .tab_left_bot_noborder, .list .tab_left_bot_noborder + td {
	border: none;
	background: none;
	height: 0px;
	padding: 0px;
}

#cust_tab th#head, .list th#head {
    text-align: left;
    background-color: #dae5ee;
    font-weight: bold;
}

#cust_tab tr.form_head th:nth-child(1) { border-right: 0px }
#cust_tab tr.form_head th:nth-child(2), .list tr.listHead td:nth-child(2) { border-left: 0px }
#cust_tab tr.form_data td:nth-child(1) { text-align: right; }

#cust_tab td p, .list td p {
    font-size: 12px;
    color: #676B50;
    margin: 0px;
    padding-left: 5px;
    padding-bottom: 4px;
}

.tablesorter th {
	cursor: pointer;
	background-image: url(../../../images/bg.gif);
    background-position: right center;
    background-repeat: no-repeat;
}

.blog_section{margin: 26px 20px; padding: 10px 6px;}
.blog_search{float: right;text-align: right;margin: 4px 10px}
.blog_search input{width: 200px;}
.blog_List_head {margin: 10px 0px 28px;}
.blog_List_head p{font-size: 10px;}
.blog_List_head A{font-size: 30px; font-weight: bold;text-decoration: none;color: #445566;}
.blog_tags{font-size: 10px; margin-top: 20px;}
.blog_tags A {text-decoration: none;}
.blog_paginate_div{margin: 10px 20px;}
.blog_paginate_div A{text-decoration: none; color: #666666}

#navbarSupportedContent{text-align: left;}
#navbarSupportedContent A {
	text-decoration: none; 
	font-size: 15px;
  padding-right: .5rem;
  padding-left: .5rem;
	display: flex;
	align-items: center;
  color: rgba(31, 31, 31, 0.6);
  font-weight: 600;
  text-shadow: 0px 1px 1px rgba(0, 123, 255, 0.08);
}
/*#navbarSupportedContent a:hover, #navbarSupportedContent a:hover > i {
  transition: all 1.5s ease;
}*/

#navbarSupportedContent a:hover, #navbarSupportedContent .active > a {
	  	color: #007bff !important;
}
#navbarSupportedContent a:hover > i, #navbarSupportedContent .active a > i {
	font-weight: 900;
}

#navbarSupportedContent li {line-height: 6px; margin: 1px 4px;}
#navbarSupportedContent .form-inline A {
    color: rgba(31, 31, 31, 0.6);
    margin: 4px;
    font-size: 12px;
    padding-right: 0.2rem;
    padding-left: 0.2rem;
    text-shadow: 0px 1px 1px rgba(0, 123, 255, 0.08);
}
#navbarSupportedContent .form-inline select {
    width: 110px;
    min-width: 110px !important;
    /* height: 28px; */
    margin-left: 5px;
    padding: .375rem .5rem;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #007bff;
    outline: 0;
    box-shadow: none;
}
#navbarSupportedContent .form-inline span {color: white;}
#newsalert{font-size: 15px;}

.footer-sp {
    padding: 0;
    font-size: 12px;
}
.footer-sp A {color: white;}

@media screen and ( max-width: 769px ) {
	#navbarSupportedContent li {line-height: 15px;}
	#alert_noti_sec .count {position: relative; top: auto; right: auto;}
}

@media screen and ( max-width: 1127px ) and (min-width: 770px) {
	/*.nav-link i{margin-bottom: 8px;}*/
}

@media screen and ( max-width: 991px ) {
	#navbarSupportedContent A {
	    line-height: 2em;
	    border-bottom: 1px solid #efefef;
	}
  #navbarSupportedContent A.nav-icon {
    border-bottom: 0;
}
	select#lang_code {
		position: absolute;
	    right: 20px;
	    bottom: 12px;
	}
}

.public_form {
	border: 0;
	padding: 24px;
	margin: 16px 0px;
	background: #FFF;
}
.public_head {margin: 16px 0px;}

.export_div{float:left;margin: 0px;padding-left: 1px;}
.export_div a{font-size: 18px;margin-right: 8px;}

.dashboard {margin-top: 20px;}
.dashboard .SectionHeader{margin: 20px 0px 0px;}


#content{padding-top: 6px;padding-bottom: 30px;}

.sub_menu_link{
    background-color: #c7cbce;
    color: #2e3436;
    margin-left: 2px;
}
.sub_menu_link:hover{color: black;}

.sub_menu_link {
    background-color: #ffffff;
    color: #2e3436;
    margin-left: 2px;
    border-bottom: 1px solid #dddddd !important;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
    border-bottom: 1px solid transparent !important;
}

/** Admin panel **/
#import_website_div input[type='text'] {
	min-width: unset;
}


/**jquery UI**/

.ui-dialog {
    padding: 0;
}

.ui-dialog .ui-button{outline: none;}
.ui-dialog-titlebar{background-color: #343a40 !important;}
.ui-dialog-title{color: white;}

.ui-widget {
    font-family: "Franklin Gothic Book", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1em;
}
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
    font-family: "Franklin Gothic Book", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1em;
}
.ui-widget.ui-widget-content {
    border: 1px solid rgba(0, 123, 255, 0.2);
    top: 90px !important;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
    border-bottom-right-radius: 0;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
    border-bottom-left-radius: 0;
}
.ui-widget-header {
    border: 0;
    font-weight: normal;
}
.ui-dialog-titlebar {
    background-color: #007bff !important;
}
.ui-dialog .ui-dialog-titlebar {
    padding: 0.8em 1em;
    position: relative;
}
.ui-dialog-title {
    color: #ffffff;
}
/**close btn**/
.ui-button .ui-icon {
    background-image: url(../../../jquery-ui/images/ui-icons_ffffff_256x240.png);
    opacity: .777;
}
.ui-dialog .ui-dialog-titlebar-close {
    position: absolute;
    right: 1.3em;
    top: 50%;
    width: 34px;
    height: 34px;
    margin: -17px 0 0 0;
    padding: 1px;
    background: transparent;
    border: none;
    border-radius: 50%;
    /* box-shadow: inset 0 0px 1px 1px rgba(0, 0, 0, 0.16); */
}
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon, .ui-button:hover .ui-icon, .ui-button:focus .ui-icon {
    background-image: url(../../../jquery-ui/images/ui-icons_ffffff_256x240.png);
    opacity: 1;
}
.ui-state-active .ui-icon, .ui-button:active .ui-icon {
    background-image: url(../../../jquery-ui/images/ui-icons_ffffff_256x240.png);
    opacity: 1;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
    border: 1px solid rgba(204, 204, 204, 0);
    background: rgba(255, 255, 255, 0);
    font-weight: normal;
    color: #2b2b2b;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid rgba(0, 0, 0, 0);
    background: rgba(0, 0, 0, 0);
    font-weight: normal;
    color: #fff;
}
/** notifications **/

#alert_noti_sec {
    /*display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;*/
	margin-left: 4px;
    position: fixed;
    right: 0;
    bottom: 8px;
    z-index: 99999999;
}

#alert_noti_sec A.dropdown-toggle::before, #alert_noti_sec A.dropdown-toggle::after {
    border: none;
    content: none;
}
#alert_noti_sec A.dropdown-toggle {
    color: rgb(0, 123, 255);
    background: #fff;
    height: 44px;
    width: 44px;
    display: block;
    border-radius: 50%;
    padding: 6px 13px 0;
    box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.09);
}
#alert_noti_sec .dropdown-menu{
	min-width: 22rem; 
	max-height: 500px; 
	overflow: auto;
	margin-top: 8px;
	padding: 0px; 
	font-size: 12px;
	bottom: 50px;
    top: unset;
 }
#alert_noti_sec .dropdown-menu-right { right: 0;}
#alert_noti_sec .dropdown-menu A { color: #0056b3; font-weight: bolder; font-size: 12px;}
#alert_noti_sec .dropdown-menu li {
	line-height: 14px; 
	margin: 0px; 
	border-top: none; 
	border-left: none; 
	border-right: none;
}
#alert_noti_sec .count {
  font-size: 10px;
  border-radius: 10px;
  background-color: #d9534f;
  padding: 4px;
  top: -4px;
  left: auto;
  right: -6px;
  position: absolute;
}
.list-group-item-secondary {
    color: #383d41;
    background-color: #fff;
}
.list-group-item-secondary a {
	color: #007bff;
}