@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;0,700;1,400;1,500&display=swap');

#topmenu li {
  color:#fff;
}

#topmenu li > span
{
  padding-top: 7px;
  padding-right: 20px;
  padding-bottom: 7px;
  padding-left: 20px;
  font-size: 16px;
  font-family: 'Oswald';
}

.breadcrumb {
  color:gray;
  background-color: transparent;
  list-style:none;
  font-size: 14px;
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li+li:before {
  color: gray;
  content: ">\00a0" !important;
}

.breadcrumb li a {
  color: gray;
  text-decoration: none;
}

.breadcrumb li a:hover {
  color: blue;
  text-decoration: underline;
}

/*** Table ***/

.table-description {
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: white;
    font-family: 'Roboto', sans-serif;
    font-weight:700;
}
.table-description td{
    font-size:12px;
    border: 1px solid #ffffff;
    padding:5px;
}
.table-description tr:nth-child(even) {
    background: #E9EBEC;
}
.table-description tr:nth-child(odd) {
    background: #D5D8DA;
}


.table-detail {
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: white;
    font-family: 'Roboto', sans-serif;
}
.table-detail td, .detail-table th {
    text-align: center;
    border: 1px solid #ffffff;
    font-size:14px;
}
.table-detail td {
    border: 1px solid #ffffff;
    font-size: 12px;
}
.table-detail thead th {
    color: #ffffff;
    background: #002856;
}
.table-detail tr:nth-child(odd) {
    background: #E9EBEC;
}
.table-detail tr:nth-child(even) {
    background: #D5D8DA;
}
.table-detail tr:hover {
	color: #ffffff;
	background-color: #002856;
}


/*** Flip effect ***/
.tck-flip-module {
	z-index: auto;
	overflow: visible;
	background: none;
	perspective: 1000px;
	position: relative;
		
}

.tck-flip-module .tck-module-text {
	box-sizing: border-box;
	z-index: 1;
	-webkit-backface-visibility: hidden; /* Safari */
	backface-visibility: hidden;
	transform: rotateY(180deg);
	top:0;
	/*! overflow: visible; */
}

.tck-flip-module .tck-module {
	transform-style: preserve-3d;
	transition: transform 0.8s;
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	overflow: visible;
}

.tck-flip-module h3 {
	opacity: 1;
	z-index: 2;
	/* for firefox 31 */
	transform: rotateY(0deg);
	position:absolute;
}

.tck-flip-module h3,
.tck-flip-module .tck-module-text {
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden; /* Safari */
	backface-visibility: hidden;
}

.tck-flip-module:hover .tck-module {
	transform: rotateY(-180deg);
}

.readmore {
  font-variant: small-caps;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s;
  background-color:cyan;
}

.readmore::after {
  content: ">";
  display: inline-block;
  font-family: Cursive;
  margin: 0 0 0 10px;
  font-size: 150%;
  line-height: 0;
  vertical-align: sub;
}

/***
.uno-button {
  align-items: center;
  background-image: linear-gradient(144deg,#CE579B, #5B42F3 50%,#00DDEB);
  border: 0;
  border-radius: 5px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 10px 20px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}

.uno-button:active,
.uno-button:hover {
  outline: 0;
}***/

.uno-button {
  align-items: center;
  background-color: #fff;
  border:0;
  border-radius: 5px;
  box-shadow: transparent 0 0 0 3px,rgba(18, 18, 18, .3) 0 6px 20px;
  box-sizing: border-box;
  color: #888888;
  cursor: pointer;
  display: inline-flex;
  flex: 1 1 auto;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  margin: 0;
  outline: none;
  text-align: center;
  max-width: 100%;
  min-width: 140px;
  padding: 10px 20px;
  text-decoration: none;
  transition: box-shadow .2s,-webkit-box-shadow .2s;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.uno-button:hover {
  box-shadow: #cfcfcf 0 0 0 3px, transparent 0 0 0 0;
}


