@import url('https://fonts.googleapis.com/css?family=Rubik:400,500,700');

body {
  font-family: Rubik, Verdana, sans-serif;
  background-color: #f3f4f8;
  margin:0;
  font-size: 15px;
}

#customers {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#customers table ,#customers td, #customers th {
  border: 1px solid #ddd;
  padding: 8px;
}
#customers table {
  border-collapse: collapse;
}

#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #4CAF50;
  color: white;
}

#main {
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    box-shadow: 0px 0px 5px 0px rgba(224,224,224,1);
}

img {
  max-height: 100%;
}

ol, ul {
  padding-left: 18px;
}

h1 {
  color: #693377;
  font-size: 2.6rem;
  padding-top: 8px;
  font-weight: normal;
}

h2 {
  color: #693378;
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0px;
  padding-bottom: 12px;
  padding-top: 22px;
}

h3 {
  color: #693377;
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0px;
  padding-bottom: 12px;
  padding-top: 22px;
}

table, th, td {
   padding: 4px;
}

table {
  border-collapse: collapse;
}

td {
  padding:5px;
}

.alt-line1 {
  background-color: #cccccc;
}

.exists {
  background-color: #92f8ab;
}

.notnotified {
  color: red;
}

#header {
  background-color: #D62C60;
  font-size: 26px;
  color: #fff;
  display: flex;
  align-items: center;
  width: 100%;
  box-shadow: 0px 0px 5px 0px rgba(224,224,224,1);
}

@media (max-width: 767.98px) {
  #header {
    flex-direction: column;
  }
}

#header.viewingAs {
  background-color: red;
}

#header .headertext {
  font-weight: 500;
  font-size: 30px;
}

#header .logo {
  margin: 25px 50px;
  height: 50px;
}

#header .logout {
  font-size: 12pt;
  text-align: right;
  padding: 50px 30px 10px;
  margin-left: auto;
}
#header .logout a {
  color: #fff;
  position: relative;
}
#header .logout a:hover{
  text-decoration: none;
}
#header .logout a:hover::after {
  content: '';
  background-color: #fff;
  position: absolute;
  bottom: -2px;
  height: 2px;
  width: 100%;
  left: 0;
}

#content{
  padding: 30px 20px;
}

.disabled {
  color: red;
}

.prospect {
  color: #5f5f5f;
}

.clientField {
  min-width: 90px;
  display: inline-block;
}

.custom-releases {
  word-break: break-all;
}

/***************************/
/********** Popup **********/
/***************************/

.overlay {
  background: rgba(0,0,0,0.7);
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 15px;
  overflow: auto;
}

.popupFieldName {
  min-width: 80px;
  display: inline-block;
}

.popup {
  position: relative;
  max-width: 600px;
  z-index: 300;
  background: #FFFFFF;
  padding: 30px;
  box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
  margin: 75px auto;
}

.popup .popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}
.popup .popup-close::after {
  content: "\00D7";
  font-size: 20px;
}

.noscroll {
  overflow: hidden;
}

.sub-section {
  padding-left: 20px;
}

a.a-action {
  padding: 5px;
  margin: 10px;
  border: 2px solid black;
  background-color: #353535;
  color: white;
  text-decoration: none;
}

a.a-action:hover {
  background-color: white;
  color: #9a478d;
}

.error {
  color: red;
}

.ok {
    color: green;
}

.ko {
    color: red;
}

.accessesTableWrap {
    overflow: auto;
    max-height: 600px;
}

.accessesTableWrap > table {
    padding: 0px;
    border-collapse: initial;
    background-color: white;
    border-spacing: 0px;
    border-top-width: 0;
}

.accessesTableWrap > table > thead {
    background-color: white;
}

.accessesTableWrap thead tr:first-child th {
  border-top-width: 2px;
}
.accessesTableWrap thead tr:last-child th {
  border-bottom-width: 2px;
}
.accessesTableWrap tbody tr:first-child td {
  border-top-width: 0;
}



.foldToggle {
    font-size: 12pt;
}

.deprecatedRelease {
    text-decoration: line-through;
}

.warningLowSpace {
    color: red;
    font-size: 1.5em;
}

li .unpublished {
    color: orange;
}

footer {
  margin-top: auto;
}

footer .footer-wrapper {
  margin-top: 50px;
  background-color: #ebebeb;
  display: flex;
  flex-direction: row;
  padding: 50px 20px;
  justify-content: space-between;
  align-items: center
}
footer .left {
  padding-left: 7.8%;
}
footer .right {
  padding-right: 7.8%;
}
footer .copyright {
  color: #9c9c9c;
  font-size: 12px;
}
footer .tagline {
  font-size: 20px;
  white-space: nowrap;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

.login-form {
  max-width: 400px;
  margin: 75px auto;
}

.btn-vo, .btn-outline-vo {
  border-radius: 3px;
  border-color: #D62C60;
  border-width: 2px;
  transition: color 0.15s, background-color 0.15s, border-color 0.15s;
  margin-right: 5px;
  margin-bottom: 5px;
}

.btn-outline-vo {
  color: #D62C60;
  background-color: #fff;
}
.btn-outline-vo:hover {
  color: #fff;
  background-color: #D62C60;
}

.btn-vo:hover {
  background-color: rgb(194, 24, 76);
  border-color: rgb(194, 24, 76);
  color: #fff;
}
.btn-vo {
  color: #fff;
  background-color: #D62C60;
}

#darkenScreenObject {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.7);
  width: 100vw;
  height: 100vh;
  z-index: 20;
  font-size: 25px;
  color: #fff;
}
#darkenScreenObject .wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}
#darkenScreenObject #info {
  margin: auto;
}

.tooltip-wrap {
  position: relative;
}

.tooltip-content {
    display: none;
    position: absolute;
    bottom: 1.4em;
    left: 10px;
    background-color: #D62C60;
    color: white;
    border-radius: 5px;
    padding: 5px;
}

.tooltip-wrap:hover .tooltip-content {
  display: block;
}


/*****************************************/
/******** Demo Application Download ******/
/*****************************************/
.demo-icon {
  text-align: center;
}
.demo-icon .title {
  display: block;
  font-weight: 500;
  font-size: 18px;
}

.demo-icon .platform {
  display: block;
  font-size: 14px;
}
.demo-icon img {
  box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
  border-radius: 5px;
  margin: auto;
  width: 100px;
  display: block;
  margin-bottom: 7px;
}

#details {
  font-size: 15px;
}
