/* Common style. */
.consent-td {
	padding: 10pt;
}
.consent-td h2 {
    margin-bottom: 4pt;
}

/* Pop up modal style. */
.pop-up-container {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
}
.pop-up-container > .modal-content {
    display: table;
    background-color: #fefefe;
    margin: 15% auto 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 400pt; /* Could be more or less, depending on screen size */
}

/* Sider switch style. */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    min-height: 20px;
}
.switch input {
    display: none;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
  }
  input:checked + .slider {
    background-color: #00CC66;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #00CC66;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
  }
/* Table style. */
.table-row {
    display: table-row;
}
.table-cell {
    display: table-cell;
}
.table-row-group {
    display: table-row-group;
}
.right {
    text-align: right;
}
.text-block-content {
    text-align: justify;
}
/* Grid style. */
.grid-container {
	position: absolute;
	bottom: 50pt;
    display: grid;
    width: 100%;
    background-color: white;
}

/* GDPR consent style. */
#cookie-policy-content {
    padding: 0 20pt 10pt 20pt;
}
#consent-action-container {
    display: grid;
    align-items: center;
    justify-items: center;
    text-align: center;
}
#consent-action-containe table {
    width: 100%;
}
#consent-action-container > a {
    color: #00CC66;
    text-decoration: underline;
}
.gdpr-button {
    width: 60pt;
    height: 34pt;
    margin: 2pt;
    color: #ffffff;
    background-color: #00CC66;
    border: 0;
    border-radius: 6pt;
    box-shadow: 2px 2px 1px #CCCCCC;
}
.gdpr-button:hover {
    cursor: pointer;
}
