
body {
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
    color: #555555;
}

.logo {
    font-family: 'Lexend Deca', sans-serif;
    color: #000000;
    font-size: 5.0rem;
    letter-spacing: -.1rem;
}

h1 {
    font-size: 3.0rem;
    line-height: 1.2;
    letter-spacing: -.1rem;
    margin-top: 2%
}

h2 {
    font-size: 2.6rem;
    line-height: 1.25;
    letter-spacing: -.1rem;
}

h3 {
    font-size: 2.2rem;
    line-height: 1.3;
    letter-spacing: -.1rem;
}

h4 {
    font-size: 1.8rem;
    line-height: 1.35;
    letter-spacing: -.08rem;
}

h5 {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: -.05rem;
}

h6 {
    font-size: 1.2rem;
    line-height: 1.6;
    letter-spacing: 0;
}

:disabled, :disabled:hover, .disabled {
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)" !important;;

    /* IE 5-7 */
    filter: alpha(opacity=30) !important;;

    /* Netscape */
    -moz-opacity: 0.3 !important;;

    /* Safari 1.x */
    -khtml-opacity: 0.3 !important;;

    /* Good browsers */
    opacity: 0.3 !important;;
}


.compact-v-margin {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

/* Black links */
a {
    color: #555555;
}

a:hover {
!important;
    color: #FFFFFF;
    background-color: #000000;
    text-decoration: none;
}

a > img.logo:hover {
    background: #E1E1E1;
}

/**
* fixing weird table border spacing in 21/11/2020.
**/
table {
    -webkit-border-vertical-spacing: 0px !important;
    -webkit-border-horizontal-spacing: 0px !important;
    border-spacing: 0px !important;
}


.linkNoRoll:hover {
!important;
    background-color: #FFFFFF;
}


.tplst-container {
    position: relative;
    max-width: 960px;
    margin: 10px auto;
    padding: 0 20px;
    variant-sizing: border-variant;
}


/* Black Button */
.button.dark {
    color: #FFFFFF;
    background: #000000;
    border-radius: 4px;
}


.button.dark:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.button.dark:focus {
    color: #FFFFFF;
    text-decoration: underline;
}

.button.red {
    color: #FFFFFF;
    background: #e50000;
    border-radius: 4px;
    border: none;
}

.button.red:focus {
    background: #e50000;
    color: #FFFFFF;
}

.button.red:hover {
    background: #DC143C;
    color: #FFFFFF;
}

.normalItem {
}

.highlightedItem {
    background-color: #FFDC24;
}

.grayHighlightedItem {
    background-color: #F1F1F1;
}

.darkGrayHighlightedItem {
    background-color: #DDDDDD;
}

.alertHighlightedItem {
    background-color: #666666;
    padding-bottom: 2px;
    padding-top: 2px;
    padding-left: 3px;
    padding-right: 3px;
    color: #FFFFFF;
    font-size: 9px;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"] {
    height: 20px !important;
    padding: 2px 4px !important;
}

/* --------------------
   Volatile messages
 --------------------*/

.volatileMessage {
    visibility: hidden;
}

.showVolatileMessage {
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

/* --------------------
   Cookies consent
 --------------------*/

.cookieConsentContainer {
    z-index: 999;
    width: 350px;
    min-height: 20px;
    box-sizing: border-box;
    padding: 30px 30px 30px 30px;
    background: #232323;
    overflow: hidden;
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: none;
}

.cookieConsentContainer .cookieTitle a {
    font-family: OpenSans, arial, "sans-serif";
    color: #FFFFFF;
    font-size: 22px;
    line-height: 20px;
    display: block;
}

.cookieConsentContainer .cookieDesc p {
    margin: 0;
    padding: 0;
    font-family: OpenSans, arial, "sans-serif";
    color: #FFFFFF;
    font-size: 13px;
    line-height: 20px;
    display: block;
    margin-top: 10px;
}

.cookieConsentContainer .cookieDesc a {
    font-family: OpenSans, arial, "sans-serif";
    color: #FFFFFF;
    text-decoration: underline;
}

.cookieConsentContainer .cookieButton a {
    display: inline-block;
    font-family: OpenSans, arial, "sans-serif";
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    margin-top: 14px;
    background: #000000;
    box-sizing: border-box;
    padding: 15px 24px;
    text-align: center;
    transition: background 0.3s;
}

.cookieConsentContainer .cookieButton a:hover {
    cursor: pointer;
    background: #444444;
}

@media (max-width: 980px) {
    .cookieConsentContainer {
        bottom: 0px !important;
        left: 0px !important;
        width: 100% !important;
    }
}

.imageStatus {
    vertical-align: middle;
}

hr.dotted {
    border-top: 1px dotted #E1E1E1;
}


/**********************
* Fields
***********************/

input.invalid{
    border: 2px solid red; !important;
}


/**********************
* Pre Console support
***********************/

.console {
    background-color: #2B333F;
    padding-top: 10px;
    padding-bottom: 10px;
}

.console-pre {
    color: #ffffff;
    font-size: 12px;
    padding-left: 2%;
    padding-right: 2%;
    overflow-wrap: break-word;
}

.json-key {
    color: #D1D1D1;
}

.json-string {
    color: #ffffff;
}

.json-boolean {
    color: #F1F1F1;
}

.json-number {
    color: #E1E1E1;
}

.json-null {
    color: #c0392b;
}

.centered {
    text-align: center;
    justify-content: center;
    align-items: center;
}