/*General Global Styles & Resets */
/************************************************************************/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body { height: 100%;}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.8;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/***********************************************************************/


/* DP Colors */
:root {
--white: #ffffff;
--yellow: #f9ca24;
--red: #ff3f34;
--lightRed: #eb4d4b;
--blue: #1e90ff;
--navy: #1B1C32;
--orange: #f0932b;
--black: #1e272e;
--green: #6ab04c;
--grey: #2f3542;
--black: #000000;
--lightGrey: #f1f2f6;
}
/* DP Background Colors */
/************************************************************************/
.dp-yellow {
  background-color: var(--yellow) !important;
  color: var(--white) !important;
}
.dp-grey {
    background-color: var(--grey) !important;
    color: var(--white) !important;
}
.dp-blue {
	background-color: var(--blue) !important;
	color: var(--white) !important;
}
.dp-navy {
	background-color: var(--navy) !important;
	color: var(--white) !important;
}
.dp-lightGrey {
	background-color: var(--lightGrey);
	color: var(--grey) !important;
}
.dp-red {
	background-color: var(--red) !important;
	color: var(--white) !important;
}
.dp-lightRed {
	background-color: var(--lightRed) !important;
	color: var(--white) !important;
}
.dp-green {
	background-color: var(--green) !important;
	color: var(--white) !important;
}
.dp-orange {
	background-color: var(--orange) !important;
	color: var(--white) !important;
}
.dp-black {
	background-color: var(--black) !important;
	color: var(--white) !important;
}
.dp-white {
	background-color: var(--white) !important;
	color: var(--black) !important;
}

.dp-text-white { color: var(--white) !important ; }
.dp-text-yellow { color: var(--yellow) !important ; }
.dp-text-red { color: var(--red) !important ; }
.dp-text-blue { color: var(--blue) !important ; }
.dp-text-navy { color: var(--navy) !important ; }
.dp-text-orange { color: var(--orange) !important ; }
.dp-text-black { color: var(--black) !important ; }
.dp-text-green { color: var(--green) !important ; }
.dp-text-grey { color: var(--grey) !important; }
.dp-text-black { color: var(--black) !important;}

/* Paddings */
/************************************************************************/
.dp-padding-5 { padding: 5px; }
.dp-padding-10 { padding: 10px; }
.dp-padding-20 { padding: 20px; }

/* Margins */
/************************************************************************/
.dp-margin-0 { margin: 0; }
.dp-margin-5 { margin: 5px; }
.dp-margin-10 { margin: 10px; }
.dp-margin-20 { margin: 20px; }
.dp-margin-left {margin-left: 20px;}
.dp-margin-top {margin-top: 20px;}
.dp-margin-right {margin-right: 20px;}
.dp-margin-bottom {margin-bottom: 20px;}

/* Borders */
/************************************************************************/
.dp-border-0 { border: 0 !important; }
.dp-border { border: 1px solid #ccc!important; }
.dp-border-top { border-top: 1px solid #ccc !important; }
.dp-border-right { border-right: 1px solid #ccc !important; }
.dp-border-left { border-left: 1px solid #ccc !important; }
.dp-border-bottom { border-bottom: 1px solid #ccc !important; }

.dp-topbar { border-top: 6px solid #ccc !important; }
.dp-rightbar { border-right: 6px solid #ccc !important; }
.dp-leftbar { border-left: 6px solid #ccc !important; }
.dp-bottombar { border-bottom: 6px solid #ccc !important; }

.dp-border-red { border-color: var(--red) !important; }
.dp-border-blue { border-color: var(--blue) !important; }
.dp-border-yellow { border-color: var(--yellow) !important; }
.dp-border-green { border-color: var(--green) !important; }
/* Round Classes */
/************************************************************************/
.dp-round-sm { border-radius: 2px;}
.dp-round-md { border-radius: 4px;}
.dp-round-lg { border-radius: 8px;}
.dp-round-xl { border-radius: 16px;}
.dp-round-2xl { border-radius: 32px;}

.dp-round-top { border-top-left-radius: 4px; border-top-right-radius: 4px;}
/* Fonts */
/************************************************************************/
.dp-font-14px { font-size: 14px; }
.dp-font-16px { font-size: 16px; }
.dp-font-20px { font-size: 20px; }
.dp-font-24px { font-size: 24px; }
.dp-font-30px { font-size: 30px; }

/* Headers & Typography*/
/************************************************************************/
h1, h2, h3, h4, h5, h6 { margin: 10px 0; font-weight: 600;}
h1 { font-size: 55px;}
h2 { font-size: 30px;}
h3 { font-size: 25px;}
h4 { font-size: 20px;}
h5 { font-size: 18px;}
h6 { font-size: 15px;}

/* Page Breaks HR Line */
/************************************************************************/
hr {
	border: 0;
	margin: 30px 0;
	border-top: 1px solid var(--lightGrey);

}

/* Tables */
/************************************************************************/
.dp-table {
	width:100%;
	border-collapse: collapse;
	color:#475F77;

	overflow:scroll;
/* Scrollbar are always visible */
	overflow:auto;
/* Scrollbar is displayed as it's needed */
}

.dp-table th {
	padding:10px;
	text-align:left;
	word-wrap:break-word;
	border-bottom: 2px solid #dcdde1;
	width: auto;
}

.dp-table td {
	border-bottom:1px solid #eee;
	font-size:14px;
	padding:10px;
	font-weight:300;
	/*width:auto; */
}
.dp-table td:last-of-type {
	text-align: right;
}

.dp-zebra tr:nth-child(even) {
  background-color: #FBFBFB;
}

/* Forms */
/************************************************************************/
.dp-check, .dp-radio {
    width: 20px;
    height: 20px;
		vertical-align: middle;
}

/* Images */
/************************************************************************/
.dp-image {
	/* Make image responsive but never exceed its original set size */
    max-width: 100%;
    height: auto;
}

/* Buttons */
/************************************************************************/
.dp-btn, .dp-button {
    border: none;
    display: inline-block;
    padding: 14px 25px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
	}

/* Containers */
/************************************************************************/
	.dp-container, .dp-panel {
    padding: 0.01em 16px;
}

/* Warnings */
/************************************************************************/


/* Pannels */
/************************************************************************/
.dp-panel {
	margin-top: 16px;
  margin-bottom: 16px;
}

/* Display Classes */
/************************************************************************/
.dp-top, .dp-bottom {
    position: fixed;
    width: 100%;
    z-index: 1;
	}
.dp-top { top: 0; }
.dp-bottom { bottom: 0; }

.dp-text-left { text-align: left; }
.dp-text-right { text-align: right; }
.dp-text-center { text-align: center; }
.dp-text-justify { text-align: justify; }

.dp-left { float: left; }
.dp-right { float: right; }
.dp-center { margin: 0 auto;}

.dp-hide { display: none ;}
.dp-show { display: block; }

/* Tooltip */
/* Tooltip container */
.dp-tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.dp-tooltip .dp-tooltiptext {
  visibility: hidden;
  width: 80%;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}
.dp-tooltip .dp-tooltiptext {
  width: 80%;
  bottom: 100%;
  left: 50%;
  margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

/* Show the tooltip text when you mouse over the tooltip container */
.dp-tooltip:hover .dp-tooltiptext {
  visibility: visible;
}

.dp-tooltip .dp-tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}
/* Media Queries */
/************************************************************************/
@media (max-width: 600px) {
.dp-mobile {
	/* Defines responsive elements */
    display: block;
    width: 100%!important;
}
}