 /* Legal&Tax Telecom custom styling */



/* Variables*/

:root {
	--default: #354452;
	--defaultHover: rgba(53,68,82,.7);
	--textPrimary: #20c4f4;
	--textPrimaryHover: #0995be;
  	--backgroundPrimary: #0bb2e3;
  	--backgroundPrimaryHover: #0ba8d6;
  	--backgroundSecondary: #38b34f;
  	--backgroundSecondaryHover: #2c8c3e;
  	--white: #FFFFFF;
  	--whiteHover: #d9d9d9;
  	--lightGray: #EEEEEE;
  	--gray: #ededed;
  	--gray2: #9A9A9A;
  	--gray3: #f6f6f6;
  	--darkGray: #707070;
  	--cardTableBG: #31424F;
  	--tableBorder: #D3D3D3;
  	--formtext: #495057;
}



/* Bootstrap overrides */

body {
  	font-family: 'Roboto', sans-serif;
  	color: var(--default);
  	font-size: 14px;
 }

a {
    color: var(--textPrimary);
    text-decoration: none;
}

a:focus, 
a:hover {
	color: var(--textPrimaryHover);
    text-decoration: underline;
}

.navbar {
	border-bottom: 1px solid var(--gray);
	background-color: var(--white) !important;
	height: 66px;
}

footer {
	color: var(--gray2);
	font-size: 0.75rem;
}

.btn {
	border: none;
	border-radius: 0;
	padding: .75rem;
}

.btn + .btn {
	margin-top: 1rem;
}

.btn a {
	text-decoration: none;
}

.btn-sm {
	padding: 0.5rem 0.25rem;
	margin-bottom: 0.5rem;
}

.btn-primary {
	background-color: var(--backgroundPrimary);
	color: var(--white);
}

.btn-primary:focus,
.btn-primary:hover {
	background-color: var(--backgroundPrimaryHover);
	color: var(--whiteHover);
}

.btn-link-secondary {
	color: var(--backgroundSecondary);
}

.btn-link-secondary:hover,
.btn-link-secondary:focus {
	color: var(--backgroundSecondaryHover);
}

.btn-light {
	background-color: var(--lightGray);
}

.btn-group-sm > .btn, .btn-sm,
.btn-group-sm > .btn, .btn-sm a {
    font-size: 0.687rem;
    line-height: 1.5;
}

.form-inline .form-check {
    width: auto;
}

/* END - Bootstrap overrides */



/* Common */

h1 {
	color: var(--textPrimary);
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

/* END - Common */



/* Navigation styling */

.navbar-light .navbar-nav .nav-link {
	text-decoration: none;
  	color: var(--default);
	text-transform: uppercase;
	font-size: 14px;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
	color: var(--defaultHover);
}

.navbar-light .navbar-nav .nav-link.logOut {
	color: var(--textPrimary);
}

.navbar-light .navbar-nav .nav-link.logOut:focus,
.navbar-light .navbar-nav .nav-link.logOut:hover {
	color: var(--textPrimaryHover);
}

.navDivideLine {
	border-left: 1px solid var(--gray) !important;
	width: 1px;
}

.IconMobileNav {
	z-index: 1050;
	position: fixed;
}

.mobileNav {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1030;
  top: 0;
  right: -100%;
  background-color: var(--white);
  overflow-x: hidden;
  transition: 0.3s ease-in-out;
  padding: 70px 15px;
}

.mobileNav a {
  padding: 10px 15px;
  text-decoration: none;
  color: var(--default);
  display: block;
  transition: 0.3s;
  text-transform: uppercase;
  font-size: 14px;
}

.mobileNav a:focus,
.mobileNav a:hover {
	color: var(--defaultHover);
}

.mobileNav a.logOut {
	border-top: 1px solid var(--gray);
	color: var(--textPrimary);
	padding-top: 20px;
	margin-top: 10px;
}

.mobileNav a.logOut:focus,
.mobileNav a.logOut:hover {
	color: var(--textPrimaryHover);
}

.nav-icon {
    margin: .25rem;
    width: 24px;
}

.nav-icon::after, .nav-icon::before, .nav-icon div {
    content: "";
    background-color: var(--default);
    display: block;
    height: 2px;
    margin: 5px 0;
    transition: all .1s ease-in-out;
}

.mobileNav .IconMobileNav.closebtn {
	position: absolute;
	top: 16px;
	right: 16px;
}

.IconMobileNav.closebtn .nav-icon div {
    transform: scale(0);
}

.IconMobileNav.closebtn .nav-icon::before {
    transform: translateY(7px) rotate(135deg);
}

.IconMobileNav.closebtn .nav-icon::after {
    transform: translateY(-7px) rotate(-135deg);
}

/* END - Navigation styling */



/* Notification styling */

.notifications {
	margin-bottom: .5rem;
}

.notifications .row {
	padding-right: 10px;
	padding-left: 10px;
}

.notifications .row .col-6 {
	padding-right: 5px;
	padding-left: 5px;
}

/* END - Notification styling */



/* Filters */

.filters {
	margin-bottom: 0.5rem;
}

.filters .form-group {
	margin-bottom: 0;
}

.has-search .form-control {
	font-size: 12px;
    padding-right: 2rem;
    border-radius: 0;
    background-color: var(--gray3);
    border: 1px solid var(--gray);
    color: var(--formtext);
    border-left: 0;
}

.has-search .iconSearch {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    pointer-events: none;
    color: var(--textPrimary);
    right: 0;
    top: 0;
}

.select {
    position: relative;
    display: inline-block;
    width: 100%;
}    
.select select {
	font-size: 12px;
    display: inline-block;
    width: 100%;
    padding: .375rem;
    outline: 0;
    border: 1px solid var(--gray);
    border-radius: 0px;
    color: var(--formtext);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.select select::-ms-expand {
    display: none;
}
.select select:disabled {
    opacity: 0.5;
    pointer-events: none;
}
.select_arrow {
    position: absolute;
    top: 14px;
    right: 12px;
    pointer-events: none;
    border-style: solid;
    border-width: 6px 5px 0px 5px;
    border-color: var(--formtext) transparent transparent transparent;
}

.select.withSearch select {
	background-color: var(--gray3);
}

.formLabel {
	color: var(--formtext);
	font-size: 12px;
	display: block;
	width: 100%;
	margin-bottom: .25rem;
}

.control {
	font-size: 12px;
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    color: var(--formtext);
    line-height: 20px;
}
label.control {
	margin-bottom: .5rem;
}
label.control + label.control {
	margin-left: 1rem;
}
.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.control_indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background: var(--white);
    border: 1px solid var(--whiteHover);
    border-radius: 2px;
}
.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
    background: var(--whiteHover);
}

.control input:checked ~ .control_indicator {
    background: var(--backgroundSecondary);
    border-color: var(--backgroundSecondary);
}
.control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
    background: var(--backgroundSecondaryHover);
}
.control input:disabled ~ .control_indicator {
    background: var(--gray);
    opacity: 0.6;
    pointer-events: none;
}
.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}
.control input:checked ~ .control_indicator:after {
    display: block;
}
.control-checkbox .control_indicator:after {
    left: 6px;
    top: 3px;
    width: 4px;
    height: 9px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.control-checkbox input:disabled ~ .control_indicator:after {
    border-color: var(--gray);
}

/* END - Filters */



/* Accordion */

.accordion > .card {
	border-radius: 0;
	border: 0;
	font-size: 12px;
}

.accordion > .card:not(:last-of-type) {
	margin-bottom: 20px;
}


.accordion .card .card-header {
	background-color: var(--cardTableBG);
	color: var(--white);
	padding: 0;
}

.accordion .card .card-header .accordionArrow {
	padding: 1rem;
}

.accordion .card .card-header .accordionArrow i {
	width: 1rem;
	font-size: 20px;
}

.accordion .card .card-header .title {
	opacity: .7;
}

.accordion .card .card-header .process a {
	border-left: 1px solid var(--white);
	padding: 0.5rem 1rem;
}

.accordion .card .card-body {
	border: 1px solid var(--tableBorder);
	padding: 0;
}

.accordion .card .card-body .cardGroup {
	padding: 0.75rem 1rem;
}

.accordion .card .card-body .cardGroup:not(:last-of-type) {
	border-bottom: 1px solid var(--tableBorder);
}

.accordion .card .card-body .cardGroup .cardGroupTitle {
	font-weight: 700;
}

/* END - Accordion */



/* Table */

.table-bordered td, .table-bordered th {
    border: 1px solid var(--tableBorder);
}

.table .thead-dark th {
	font-weight: 600;
}

.table .thead-dark th {
	background-color: var(--cardTableBG);
}

.table.table-bordered .thead-dark th {
	border-top: none;
	border-bottom: none;
	border-left: 1px solid var(--tableBorder);
	border-right: 1px solid var(--tableBorder);
}

.table-bordered {
    border: none;
}

.table tr:hover {
	background-color: var(--lightGray);
	cursor: pointer;
}

.table td, .table th {
    padding: 1rem;
    font-weight: 400;
}

/* END - Table */



/* Pagination */

.pageNavigation {
	font-size: 12px;
}

.pagination {
	margin: 0 1rem;
	border-radius: 100%;
}

.page-link {
	background-color: var(--lightGray);
	border: none;
	color: var(--cardTableBG);
}

.page-link.active {
	color: var(--textPrimary);
}

.page-item:first-child .page-link {
    border-top-left-radius: 100%;
    border-bottom-left-radius: 100%;
}

.page-item:last-child .page-link {
    border-top-right-radius: 100%;
    border-bottom-right-radius: 100%;
}

/* END - Pagination */



/* Media queries */

@media (max-width: 767px) { 

	.navbar-brand-img {
		height: 40px;
	}

}

@media (min-width: 768px) { 

	.navbar {
		height: 74px;
	}

	.btn-group-sm > .btn, .btn-sm,
	.btn-group-sm > .btn, .btn-sm a {
	    font-size: 0.875rem;
	    line-height: 1.5;
	}

	h1 {
		font-size: 1.6875rem;
	}

	.table .note {
		overflow: hidden;
		max-width: 22ch;
		width: 100%;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.pageNavigation {
		font-size: 14px;
	}

}

@media (min-width: 992px) { 

	.notifications .row {
	    padding-right: 5px;
	    padding-left: 5px;
	}

	.notifications .row .col-6 {
	    padding-right: 10px;
	    padding-left: 10px;
	}

	.has-search .form-control,
	.select select,
	.formLabel,
	.control {
		font-size: 14px;
	}

	.filters .row .col-lg-9 {
		padding-right: 10px;
	}

	.filters .row .col-lg-3 {
		padding-left: 10px;
	}

	.control {
	    padding-left: 30px;
	}

	.formLabel {
		display: inline-block;
		width: auto;
		margin-right: 2rem;
		line-height: 20px;
		margin-bottom: .5rem;
	}

	.table .note {
		max-width: 52ch;
	}

}

@media (min-width: 1200px) { 

	.table .note {
		max-width: 75ch;
	}

}

/* END - Media queries 