/*
Theme Name: Triogo Dashboard
Author: Prosoft Phils
Author URL: http://prosoft-phils.com/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
 1.0 General Styles (35,49)
 2.0 Resets
 3.0 Links (203*, 213*)
 4.0 Lists
 5.0 Alignment
 6.0 Video Modal Full-Width
 7.0 Custom Class
 8.0 Font Class (331, 334, 338, 343*, 347*, 351*)
 9.0 Custom Theme Colors (357)
10.0 Custom Button Colors (364)
11.0 Forms
12.0 Alerts
13.0 Universal Class
14.0 List Style
15.0 Vertical Horizontal Center
16.0 Nav Tab Reset
17.0 Pagination
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 General Styles
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #707070;
	font-family: 'Lato', arial, sans-serif;
	font-size: 16px;
	line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	line-height: 1.4;
	padding: 15px 0;
	font-family: 'LatoB', arial, sans-serif;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	padding-top: 0;
}

p {
	margin: 0 0 1.5em;
	padding: 0;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	font-size: 20px;
	line-height: 23px;
	font-style: italic;
	line-height: 1.7;
	margin: 15px;
	overflow: hidden;
	padding: 15px;
}

blockquote cite {
	display: block;
	font-style: normal;
	font-weight: 600;
	margin-top: 0.5em;
}

figcaption {
	font-size: 12px;
	line-height: 15px;
	text-align: center;
	margin-bottom: 15px;
	margin-top: 5px;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #eee;
	text-decoration: none;
}

big {
	font-size: 125%;
}

blockquote {
	quotes: "" "";
}

q {
	quotes: "“" "”" "‘" "’";
}

blockquote:before,
blockquote:after {
	content: "";
}

:focus {
	outline: none;
}

/*--------------------------------------------------------------
2.0 Resets
--------------------------------------------------------------*/
.reset-padding {
	padding: 0 !important
}

.reset-margin {
	margin: 0 !important
}

.modal-header {
  border-bottom: none !important;
}

.modal-footer {
  border-top: none !important;
}

.modal-video {
	background: rgba(0,0,0,0.9);
}

.carousel-control.left,
.carousel-control.right {
	background-image: none !important;
} 

.container img {
	display: block;
	max-width: 100%;
	height: auto;
}

body.modal-open {
	overflow: auto;
	padding-right: 0 !important;
}

.page-link {
	color: var(--color-teal) !important
}

/*disable lines on table*/
/*.table {
	border-bottom: 2px solid rgba(0,0,0,0) !important;
}

.table .row {
	border-top: 2px solid rgba(0,0,0,0) !important;
}*/

/*--------------------------------------------------------------
3.0 Links
--------------------------------------------------------------*/
a {
	/*color:;*/
	text-decoration: none;
}

a:focus {
	outline: 0;
}

a:hover,
a:active {
	/*color:*/
	outline: 0;
	text-decoration: none;
}

/*--------------------------------------------------------------
4.0 Lists
--------------------------------------------------------------*/
ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/*--------------------------------------------------------------
5.0 Alignment
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
6.0 Video Modal Full-Width
--------------------------------------------------------------*/
.modal-video {
	background: rgba(0,0,0,0.9);
}

.modal-video .modal-content {
	background: transparent;
}

.modal-video .modal-dialog {
	position: absolute;
	top: -10px;
	right: 10px;
	max-width: 100%;
	z-index: 3000 !important;
}

.modal-video-close {
	cursor: pointer;
	display: inline-block;
}

.video-modal-content {
    display: block;
    height: auto;
    overflow: hidden;
    position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}
	
	.video-modal-content iframe {
		width: 100% !important;
		height: 100% !important;
	}

/*--------------------------------------------------------------
7.0 Custom Class
--------------------------------------------------------------*/
.uppercase {
	text-transform: uppercase;
}

.capitalize {
	text-transform: capitalize;
}

.underline {
	text-decoration: underline;
}

.center {
	margin: 0 auto;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.border {
	box-shadow: 2px 3px 6px #ccc;
	border: 1px solid #E6E6E6;
	border-radius: 8px;
}

.inline {
	display: inline-block !important
}

.w100 {
	width: 100%
}

.cursor-pointer{
	cursor: pointer;
}

.f-18{
	font-size: 18px;
}

/*--------------------------------------------------------------
8.0 Font Class
--------------------------------------------------------------*/
.bold,
strong,
b {
	font-family:'LatoB', arial, sans-serif !important;
}

.regular {
	font-family: 'Lato', arial, sans-serif;
}

.italic {
	font-family: 'LatoI', arial, sans-serif;
}

.m-semi-bold {
	font-family:'MontserratSB', arial, sans-serif;
}

.m-bold {
	font-family: 'MontserratB', arial, sans-serif;
}

.m-italic {
	font-family:'MontserratI', arial, sans-serif;
}

.m-ebold {
	font-family: 'MontserratEB', arial, sans-serif;
}

.m-regular {
	font-family: 'Montserrat', arial, sans-serif;
}

.cursive {
	font-family: 'The Secret';
}

.font-18 {
	font-size: 18px;
}
/*--------------------------------------------------------------
9.0 Custom Theme Colors
--------------------------------------------------------------*/
:root {
	--color-body: #707070;
	--color-teal: #0BA59D;
	--color-dteal: #2F4F4F;
	--color-charcoal: #1E1E1E;
	--color-dcharcoal: #333;
	--color-dgrey: #808080;
	--color-mgrey: #d6d6d6;
	--color-lgrey: #d8d8d8;
	--color-violet: #c674f5;
	--color-purple: #CC33CC;
	--color-green: #16B456;
	--color-dgreen:#03625D;
	--color-bgreen: #109706;
	--color-ygreen: #16b457;
	--color-bred: #FF0000;
	--color-lightblue: #EFF8FF;
	--color-lblue: #05e7e6;
	--color-bblue: #1278dd;
	--color-red: #EC0000;
	--color-pink: #fa74cd;
	--color-orange: #ff8225;
}

.teal {
	color: var(--color-teal);
}

.dteal {
	color: var(--color-dteal);
}

.dgrey {
	color: var(--color-dgrey);
}

.mgrey {
	color: var(--color-mgrey);
}

.lgrey {
	color: var(--color-lgrey);
}

.charcoal {
	color: var(--color-charcoal)
}

.pink {
	color: var(--color-pink)
}

.violet {
	color: var(--color-violet)
}

.body {
	color: var(--color-body);
}

.green {
	color: var(--color-green)
}

.dgreen {
	color: var(--color-dgreen)
}

.bgreen {
	color: var(--color-bgreen)
}

.red {
	color: var(--color-red)
}

.bred {
	color: var(--color-bred)
}

.lblue {
	color: var(--color-lblue)
}

.lightblue {
	color: var(--color-lightblue)
}

.white {
	color: #fff
}

.black {
	color: #000
}

.orange {
	color: var(--color-orange)
}

.bblue {
	color: var(--color-bblue)
}

.dcharcoal {
	color: var(--color-dcharcoal)
}

.ygreen {
	color: var(--color-ygreen)
}

.bg-gradient-teal {
	background: rgba(5,231,231,1);
  background: -moz-linear-gradient(left, rgba(5,231,231,1) 0%, rgba(11,165,157,1) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(5,231,231,1)), color-stop(100%, rgba(11,165,157,1)));
  background: -webkit-linear-gradient(left, rgba(5,231,231,1) 0%, rgba(11,165,157,1) 100%);
  background: -o-linear-gradient(left, rgba(5,231,231,1) 0%, rgba(11,165,157,1) 100%);
  background: -ms-linear-gradient(left, rgba(5,231,231,1) 0%, rgba(11,165,157,1) 100%);
  background: linear-gradient(to right, rgba(5,231,231,1) 0%, rgba(11,165,157,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05e7e7', endColorstr='#0ba59d', GradientType=1 );
}

.bg-gradient-pink {
	background: rgba(250,116,205,1);
	background: -moz-linear-gradient(left, rgba(250,116,205,1) 0%, rgba(198,116,245,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(250,116,205,1)), color-stop(100%, rgba(198,116,245,1)));
	background: -webkit-linear-gradient(left, rgba(250,116,205,1) 0%, rgba(198,116,245,1) 100%);
	background: -o-linear-gradient(left, rgba(250,116,205,1) 0%, rgba(198,116,245,1) 100%);
	background: -ms-linear-gradient(left, rgba(250,116,205,1) 0%, rgba(198,116,245,1) 100%);
	background: linear-gradient(to right, rgba(250,116,205,1) 0%, rgba(198,116,245,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fa74cd', endColorstr='#c674f5', GradientType=1 );
}

.bg-gradient-green {
	background: rgba(62,227,123,1);
	background: -moz-linear-gradient(left, rgba(62,227,123,1) 0%, rgba(1,107,68,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(62,227,123,1)), color-stop(100%, rgba(1,107,68,1)));
	background: -webkit-linear-gradient(left, rgba(62,227,123,1) 0%, rgba(1,107,68,1) 100%);
	background: -o-linear-gradient(left, rgba(62,227,123,1) 0%, rgba(1,107,68,1) 100%);
	background: -ms-linear-gradient(left, rgba(62,227,123,1) 0%, rgba(1,107,68,1) 100%);
	background: linear-gradient(to right, rgba(62,227,123,1) 0%, rgba(1,107,68,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03fe35', endColorstr='#016b44', GradientType=1 );
}

.bg-gradient-blue {
  	background: rgba(33,210,246,1);
	background: -moz-linear-gradient(left, rgba(33,210,246,1) 0%, rgba(58,165,185,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(33,210,246,1)), color-stop(100%, rgba(58,165,185,1)));
	background: -webkit-linear-gradient(left, rgba(33,210,246,1) 0%, rgba(58,165,185,1) 100%);
	background: -o-linear-gradient(left, rgba(33,210,246,1) 0%, rgba(58,165,185,1) 100%);
	background: -ms-linear-gradient(left, rgba(33,210,246,1) 0%, rgba(58,165,185,1) 100%);
	background: linear-gradient(to right, rgba(33,210,246,1) 0%, rgba(58,165,185,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#21d2f6', endColorstr='#3aa5b9', GradientType=1 );
}

.bg-lightblue {
	background: var(--color-lightblue)
}

.bg-teal {
	background: var(--color-teal)
}

/*--------------------------------------------------------------
10.0 Custom Button Colors
--------------------------------------------------------------*/
.btn-gradient-teal {
  color:#fff;
  background: rgba(5,231,231,1);
  background: -moz-linear-gradient(left, rgba(5,231,231,1) 0%, rgba(11,165,157,1) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(5,231,231,1)), color-stop(100%, rgba(11,165,157,1)));
  background: -webkit-linear-gradient(left, rgba(5,231,231,1) 0%, rgba(11,165,157,1) 100%);
  background: -o-linear-gradient(left, rgba(5,231,231,1) 0%, rgba(11,165,157,1) 100%);
  background: -ms-linear-gradient(left, rgba(5,231,231,1) 0%, rgba(11,165,157,1) 100%);
  background: linear-gradient(to right, rgba(5,231,231,1) 0%, rgba(11,165,157,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05e7e7', endColorstr='#0ba59d', GradientType=1 );
  border: none !important;
  color: #262626
}

	.btn-gradient-teal:hover,
	.btn-gradient-teal:focus,
	.btn-gradient-teal:active,
	.btn-gradient-teal.active,
	.open > .dropdown-toggle.btn-gradient-teal {
		color: #fff;
	 	background: var(--color-teal);
	}

.btn-gradient-dteal {
  	color:#fff;
 	background: rgba(77,191,214,1);
	background: -moz-linear-gradient(left, rgba(77,191,214,1) 0%, rgba(21,129,151,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(77,191,214,1)), color-stop(100%, rgba(21,129,151,1)));
	background: -webkit-linear-gradient(left, rgba(77,191,214,1) 0%, rgba(21,129,151,1) 100%);
	background: -o-linear-gradient(left, rgba(77,191,214,1) 0%, rgba(21,129,151,1) 100%);
	background: -ms-linear-gradient(left, rgba(77,191,214,1) 0%, rgba(21,129,151,1) 100%);
	background: linear-gradient(to right, rgba(77,191,214,1) 0%, rgba(21,129,151,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4dbfd6', endColorstr='#158197', GradientType=1 );
	border: none !important;
	color: #262626
}

	.btn-gradient-dteal:hover,
	.btn-gradient-dteal:focus,
	.btn-gradient-dteal:active,
	.btn-gradient-dteal.active,
	.open > .dropdown-toggle.btn-gradient-dteal {
		color: #fff;
	 	background: var(--color-dteal);
	}

.btn-gradient-pink {
  color:#fff;
  background: rgba(250,116,205,1);
	background: -moz-linear-gradient(left, rgba(250,116,205,1) 0%, rgba(198,116,245,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(250,116,205,1)), color-stop(100%, rgba(198,116,245,1)));
	background: -webkit-linear-gradient(left, rgba(250,116,205,1) 0%, rgba(198,116,245,1) 100%);
	background: -o-linear-gradient(left, rgba(250,116,205,1) 0%, rgba(198,116,245,1) 100%);
	background: -ms-linear-gradient(left, rgba(250,116,205,1) 0%, rgba(198,116,245,1) 100%);
	background: linear-gradient(to right, rgba(250,116,205,1) 0%, rgba(198,116,245,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fa74cd', endColorstr='#c674f5', GradientType=1 );
	border: none !important;
	color: #262626
}

	.btn-gradient-pink:hover,
	.btn-gradient-pink:focus,
	.btn-gradient-pink:active,
	.btn-gradient-pink.active,
	.open > .dropdown-toggle.btn-gradient-pink {
		color: #fff;
	 	background: var(--color-violet);
	}

.btn-gradient-green {
  	color:#fff;
	background: rgba(62,227,123,1);
	background: -moz-linear-gradient(left, rgba(62,227,123,1) 0%, rgba(1,107,68,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(62,227,123,1)), color-stop(100%, rgba(1,107,68,1)));
	background: -webkit-linear-gradient(left, rgba(62,227,123,1) 0%, rgba(1,107,68,1) 100%);
	background: -o-linear-gradient(left, rgba(62,227,123,1) 0%, rgba(1,107,68,1) 100%);
	background: -ms-linear-gradient(left, rgba(62,227,123,1) 0%, rgba(1,107,68,1) 100%);
	background: linear-gradient(to right, rgba(62,227,123,1) 0%, rgba(1,107,68,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03fe35', endColorstr='#016b44', GradientType=1 );
	border: none !important;
	color: #262626
}

	.btn-gradient-green:hover,
	.btn-gradient-green:focus,
	.btn-gradient-green:active,
	.btn-gradient-green.active,
	.open > .dropdown-toggle.btn-gradient-green {
		color: #fff;
	 	background: var(--color-green);
	}

.btn-gradient-blue {
  	color:#fff;
  	background: rgba(33,210,246,1);
	background: -moz-linear-gradient(left, rgba(33,210,246,1) 0%, rgba(58,165,185,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(33,210,246,1)), color-stop(100%, rgba(58,165,185,1)));
	background: -webkit-linear-gradient(left, rgba(33,210,246,1) 0%, rgba(58,165,185,1) 100%);
	background: -o-linear-gradient(left, rgba(33,210,246,1) 0%, rgba(58,165,185,1) 100%);
	background: -ms-linear-gradient(left, rgba(33,210,246,1) 0%, rgba(58,165,185,1) 100%);
	background: linear-gradient(to right, rgba(33,210,246,1) 0%, rgba(58,165,185,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#21d2f6', endColorstr='#3aa5b9', GradientType=1 );
	border: none !important;
	color: #262626
}

	.btn-gradient-blue:hover,
	.btn-gradient-blue:focus,
	.btn-gradient-blue:active,
	.btn-gradient-blue.active,
	.open > .dropdown-toggle.btn-gradient-blue {
		color: #fff;
	 	background: #3AA4B9;
	}

.btn-grey {
  color: #ffffff;
  background-color: #A9A9A9;
}

	.btn-grey:hover,
	.btn-grey:focus,
	.btn-grey:active,
	.btn-grey.active,
	.open > .dropdown-toggle.btn-primary {
	  color: #ffffff;
	  background-color: var(--color-dgrey);
	  -webkit-transition: all 300ms ;
	  -moz-transition: all 300ms ;
	  -ms-transition: all 300ms ;
	  -o-transition: all 300ms ;
	  transition: all 300ms ;
	}

.btn-outline-grey {
  color: var(--color-dgrey);
  border: 1px solid var(--color-dgrey);
}

	.btn-outline-grey:hover,
	.btn-outline-grey:focus,
	.btn-outline-grey:active,
	.btn-outline-grey.active,
	.open > .dropdown-toggle.btn-primary {
	  color: #ffffff;
	  background-color: var(--color-dgrey);
	  -webkit-transition: all 300ms ;
	  -moz-transition: all 300ms ;
	  -ms-transition: all 300ms ;
	  -o-transition: all 300ms ;
	  transition: all 300ms ;
	}

.btn-outline-lgrey {
  color: var(--color-dgrey);
  border: 1px solid var(--color-lgrey);
}

	.btn-outline-lgrey:hover,
	.btn-outline-lgrey:focus,
	.btn-outline-lgrey:active,
	.btn-outline-lgrey.active,
	.open > .dropdown-toggle.btn-primary {
	  color: #ffffff;
	  background-color: var(--color-dgrey);
	  -webkit-transition: all 300ms ;
	  -moz-transition: all 300ms ;
	  -ms-transition: all 300ms ;
	  -o-transition: all 300ms ;
	  transition: all 300ms ;
	}

.btn-outline-teal {
  color: var(--color-teal);
  border: 1px solid var(--color-teal);
}

	.btn-outline-teal:hover,
	.btn-outline-teal:focus,
	.btn-outline-teal:active,
	.btn-outline-teal.active,
	.open > .dropdown-toggle.btn-primary {
	  color: #ffffff;
	  border: 1px solid var(--color-dteal);
	  background-color: var(--color-dteal);
	  -webkit-transition: all 300ms ;
	  -moz-transition: all 300ms ;
	  -ms-transition: all 300ms ;
	  -o-transition: all 300ms ;
	  transition: all 300ms ;
	}
	
.btn-dteal {
  color: #ffffff;
  background-color: var(--color-dteal);
}

	.btn-dteal:hover,
	.btn-dteal:focus,
	.btn-dteal:active,
	.btn-dteal.active,
	.open > .dropdown-toggle.btn-primary {
	  color: #ffffff;
	  background-color: var(--color-teal);
	  -webkit-transition: all 300ms ;
	  -moz-transition: all 300ms ;
	  -ms-transition: all 300ms ;
	  -o-transition: all 300ms ;
	  transition: all 300ms ;
	}

.btn-teal {
  color: #ffffff;
  background-color: var(--color-teal);
}

	.btn-teal:hover,
	.btn-teal:focus,
	.btn-teal:active,
	.btn-teal.active,
	.open > .dropdown-toggle.btn-primary {
	  color: #ffffff;
	  background-color: var(--color-dteal);
	  -webkit-transition: all 300ms ;
	  -moz-transition: all 300ms ;
	  -ms-transition: all 300ms ;
	  -o-transition: all 300ms ;
	  transition: all 300ms ;
	}

.btn-gold-outline {
  position: relative;
  border-radius: 0;
  padding: 16px 42px;
  width: fit-content;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  background: 
  background: rgb(9,139,131);
  background: linear-gradient(90deg, rgba(9,139,131,1) 0%, rgba(4,224,224,1) 100%);
  border: none;
  color: #000 !important;
  font-weight: bold
}

  .btn-gold-outline:hover,
  .btn-gold-outline:focus,
  .btn-gold-outline:active {
    background: #257d75;
    color: #fff
  }

.btn-pricing {
	position: relative;
	border-radius: 0;
	padding: 16px 42px;
	width: fit-content;
	font-weight: bold;
	letter-spacing: 1px;
	text-align: center;
	border: none;
	color: #000 !important;
	font-weight: bold;
}

.btn-transparent,
.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent:active,
.btn-transparent.active,
.open > .dropdown-toggle.btn-primary {
  background-color: transparent;
}

.btn-search {
	border: 1px solid #ced4da
}

.btn-sm {
	padding-left: 30px;
	padding-right: 30px;
}

/*--------------------------------------------------------------
11.0 Forms
--------------------------------------------------------------*/
body select {
	background: url('../img/arrow.png') no-repeat right;
    -webkit-appearance:none;
    -moz-appearance:none;
    cursor: pointer;
    background-color: #fff;
    padding: 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #495057;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

body select.charcoal {
	background: url('../img/arrow-charcoal.png') no-repeat right;
}

.required-indicator {
	color: #bf3131;
}

/*--------------------------------------------------------------
12.0 Alerts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
13.0 Universal Class
--------------------------------------------------------------*/
.space {
	display: block;
}

.nowrap {
	white-space: nowrap;
}

.truncate-ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
/*--------------------------------------------------------------
14.0 List Style
--------------------------------------------------------------*/
.ul-lnone-inline {
	padding-left: 0;
	list-style: none;
	margin-bottom: 0
}

	.ul-lnone-inline li {
		display: inline-block;
	}

.ul-lnone-block {
	padding-left: 0;
	list-style: none;
	margin-bottom: 0
}

	.ul-lnone-block li {
		display: block;
	}

	.ul-lnone-block li a {
		display: block
	}

/*--------------------------------------------------------------
15.0 Vertical Horizontal Center
--------------------------------------------------------------*/
.vertical-horizontal-center {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/*--------------------------------------------------------------
16.0 NAV TAB STYLE RESET
--------------------------------------------------------------*/
.nav-tab-style-reset .nav-tabs {
	border-bottom: none;
}

.nav-tab-style-reset .nav-tabs .nav-item.show .nav-link,
.nav-tab-style-reset .nav-tabs .nav-link.active {
	background: none;
	border-color: none;
}

.nav-tab-style-reset .nav-tabs .nav-link {
	border: none;
}

/*--------------------------------------------------------------
17.0 PAGINATION
--------------------------------------------------------------*/
.pagination .page-item.active .page-link {
	background: var(--color-teal);
	color: #fff !important;
	border: 1px solid var(--color-teal);
}