﻿/* #region Responsive design thinking */
/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/



@media (min-width: 1451px) {

    :root {
        font-size: 16pt;
    }

    .homestyle {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        overflow: hidden;
    }
    
}

@media (min-width: 1281px) and (max-width: 1450px) {

    :root {
        font-size: 16pt;
    }

    .homestyle {
        max-width: 100%;
        width: 100%;
        min-width: 100%;
        margin: 10px auto;
        overflow: hidden;
    }

    .pure-u-md-0 {
        display: none;
    }
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {

    :root {
        font-size: 16pt;
    }

    .homestyle {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        margin: 10px auto;
        overflow: hidden;
    }

    
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 750px) and (max-width: 1024px) {

    :root {
        font-size: 14pt;
    }

    .homestyle {
        width: 90%;
        min-width: 90%;
        max-width: 90%;
        margin: 0 auto;
        overflow: hidden;
    }
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 750px) and (max-width: 1024px) and (orientation: landscape) {

    :root {
        font-size: 14pt;
    }

    .homestyle {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        margin: 10px auto;
        overflow: hidden;
    }
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {

    :root {
        font-size: 14pt;
    }

    .homestyle {
        width: 90%;
        min-width: 90%;
        max-width: 90%;
        margin: 0 auto;
        overflow: hidden;
    }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {

    :root {
        font-size: 14pt;
    }

    .homestyle {
        width: 90%;
        min-width: 90%;
        max-width: 90%;
        margin: 0 auto;
        overflow: hidden;
    }
}
/* #endregion */

/* #region GLOBAL OVERRIDES */
html body {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 100vh;
    overflow-x: hidden;
    /* using EMs from here to keep it responsive. */
    background-color: black;
    color: white;
    
}

*, :root {
    font-family: 'Orbitron Bold','Darker Grotesque',sans-serif !important;
    
}

    *, *:before, *:after {
        -webkit-box-sizing: inherit;
        -moz-box-sizing: inherit;
        box-sizing: inherit;
    }

.pure-g form {
    width: 100%;
}

h1, h2 {
    font-weight: 900;
}

h1 {
    font-size: 2.7rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.56rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.15rem;
}

.response_score
{
    font-size:1rem !important;
}

.tiny-text {
    font-size: 0.625rem !important;
}

.small-text {
    font-size: 0.75rem !important;
}

.medium-text {
    font-size: 1rem !important;
}

.large-text {
    font-size: 1.12rem !important;
}

.xlarge-text {
    font-size: 1.5rem !important;
}

.xxlarge-text {
    font-size: 2.25rem !important;
}

.xxxlarge-text {
    font-size: 3rem !important;
}

.jumbo-text {
    font-size: 4rem !important;
}

a {
    color: white;
    text-decoration: underline; /* remove default underline */
    position: relative;
    transition: color 0.25s ease; /* optional if you ever change text color */
}

    a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        height: 2px;
        background-color: blue; /* fixed underline color */
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }

    a:hover {
        color: white; /* stays white */
    }

        a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }


/* #endregion */

/* #region RESPONSIVE TOP MENU */

.NavLogo {
    background-image: url("/images/Untitled-1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 85%;
    height: 52px;
    width: 52px;
    overflow: hidden;
    border-radius: 25px;
}

    .NavLogo:hover {
        filter: brightness(200%) saturate(200%);
        transform: rotate(360deg);
        transition-duration: 2s;
        transform-origin: 50% 50%;
        overflow: hidden;
    }

@keyframes bounce-7 {
    0% {
        transform: scale(1,1) translateY(0);
    }

    10% {
        transform: scale(1.1,.9) translateY(0);
    }

    30% {
        transform: scale(.9,1.1) translateY(-100px);
    }

    50% {
        transform: scale(1.05,.95) translateY(0);
    }

    57% {
        transform: scale(1,1) translateY(-7px);
    }

    64% {
        transform: scale(1,1) translateY(0);
    }

    100% {
        transform: scale(1,1) translateY(0);
    }
}



/* Add a black background color to the top navigation */
.topnav {
    background-color: transparent;
    overflow: hidden;
}

    /* Style the links inside the navigation bar */
    .topnav a {
        float: left;
        display: block;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

        .topnav a.navright {
            float: right;
        }

/* Add an active class to highlight the current page */
.active {
    background-color: #0F4C81;
    color: white;
}

    .active.blank {
        background-color: black;
    }

.drpactive {
    background-color: #0F4C81 !important;
    color: white !important;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
    float: left;
    overflow: hidden;
}

    /* Style the dropdown button to fit inside the topnav */
    .dropdown .dropbtn {
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: inherit;
        margin: 0;
    }

/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Style the links inside the dropdown */
    .dropdown-content a {
        float: none;
        color: white;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #0F4C81;
    color: white;
}

.topnav a.blank:hover {
    background-color: black;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #0F4C81;
    color: white;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
    display: block;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
    .topnav a:not(:first-child), .dropdown .dropbtn {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }

    .topnav a.navright {
        display: none;
    }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
    .topnav.responsive {
        position: relative;
    }

        .topnav.responsive a.icon {
            position: absolute;
            right: 0;
            top: 0;
        }

        .topnav.responsive a.navright {
            float: none;
            display: block;
            text-align: left;
        }

        .topnav.responsive a {
            float: none;
            display: block;
            text-align: left;
        }

        .topnav.responsive .dropdown {
            float: none;
        }

        .topnav.responsive .dropdown-content {
            position: relative;
        }

        .topnav.responsive .dropdown .dropbtn {
            display: block;
            width: 100%;
            text-align: left;
        }
}
/* #endregion */

/* #region MODAL POPUPS */

.modal-container {
    /*    z-index: 3;
    display: none;
    padding-top: 100px;
    position: fixed;
    left: 0;
    top: 0;
    width: 50vw;
    height: 50vh;
    overflow: auto;
    background-color: transparent;*/
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50vw;
    height: 50vh;
    transform: translate(-50%, -50%);
    background-color: transparent;
}

.modal-content {
    margin: 25%;
    background-color: transparent;
    position: relative;
    width:15vw;
    height:15vw;

}

.modal-display-topright {
    position: absolute;
    right: 0;
    top: 0;
}

.modal-content-container:after, .modal-content-container:before {
    content: "";
    display: table;
    clear: both;
}

.modal-content-container {
    padding: 0.01em 16px;
}

.modal-button {
    border: none;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: black;
    background-color: white;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .modal-button:disabled {
        cursor: not-allowed;
        opacity: 0.3;
    }

    .modal-button:hover {
        color: #000 !important;
        background-color: #ccc !important;
    }

.modal-rounded-button {
    border: none;
    display: inline-block;
    border-radius: 2em;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .modal-rounded-button:disabled {
        cursor: not-allowed;
        opacity: 0.3;
    }

    .modal-rounded-button:hover {
        color: #000 !important;
        background-color: #ccc !important;
    }

.modal-card {
    box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.19);
}

.modal-display-block {
    display: block;
}

.modal-full-display-block {
    display: block;
    width: 100%;
}

.animate-opacity {
    animation: opac 0.8s;
}

@keyframes opac {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width:1205px) {
    .modal-auto {
        max-width: 95%;
    }
}

@media (max-width:600px) {
    .modal-content {
        margin: 0 10px;
        width: auto !important;
    }

    .modal-container {
        padding-top: 30px;
    }
}

@media (max-width:750px) {
    .modal-content {
        width: 500px;
    }

    .modal-container {
        padding-top: 50px;
    }
}

@media (min-width:993px) {
    .modal-content {
        width: 900px;
    }
}

@media (max-width:992px) and (min-width:601px) {
    .modal-hide-medium {
        display: none !important;
    }
}

@media (max-width:992px) {
    .modal-sidebar.modal-collapse {
        display: none;
    }

    .modal-main {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .modal-auto {
        max-width: 100%;
    }
}

/* #endregion */

/* #region TSUNAMI TABS */
.tsum-tabs h1 {
    padding: 50px 0;
    font-weight: 400;
    text-align: center;
}

.tsum-tabs p {
    margin: 0 0 20px;
    line-height: 1.5;
}

.tsum-tabs main {
    width:100%;
    padding: 50px;
    margin: 0 auto;
    background: rgba(0,0,0,.75);
    border-radius: 10px;
    border: 1px solid #ddd;
}

.tsum-tabs section {
    display: none;
    padding: 20px 0 0;
    border-top: 1px solid #ddd;
}

.tsum-tabs input {
    display: none;
}

.tsum-tabs label {
    display: inline-block;
    margin: 0 0 -1px;
    padding: 15px 25px;
    font-weight: 600;
    text-align: center;
    color: white;
    border: 1px solid transparent;
}

    .tsum-tabs label:before {
        font-family: fontawesome;
        font-weight: normal;
        margin-right: 10px;
    }

    .tsum-tabs label[for*='1']:before {
        content: '\e49a';
    }

    .tsum-tabs label[for*='2']:before {
        content: '\e4a4';
    }

    .tsum-tabs label[for*='3']:before {
        content: '\e4e3';
    }

    .tsum-tabs label[for*='4']:before {
        content: '\f662';
    }

    .tsum-tabs label:hover {
        color: #888;
        cursor: pointer;
    }

.tsum-tabs input:checked + label {
    color: white;
    font-weight: bold;
    border: 1px solid #ddd;
    border-top: 2px solid orange;
    border-bottom: 1px solid #fff;
}

.tsum-tabs .tab1:checked ~ #content1,
.tsum-tabs .tab2:checked ~ #content2,
.tsum-tabs .tab3:checked ~ #content3,
.tsum-tabs .tab4:checked ~ #content4 {
    display: block;
}

@media screen and (max-width: 600px) {
    .tsum-tabs label {
        font-size: 0;
    }

        .tsum-tabs label:before {
            margin: 0;
            font-size: 18px;
        }
}

@media screen and (max-width: 400px) {
    .tsum-tabs label {
        padding: 15px;
    }
}
/* #endregion */

/* #region PURE.IO.CSS EXTENSIONS*/

.pure-u-sm-0, pure-u-md-0, pure-u-lg-0, pure-u-xl-0, pure-u-0 {
    /*letter-spacing: normal;*/
    display: none;
}

.responsive_score {
    font-size: 0.65rem !important;
}
/* TINY */
@media screen and (max-width:35.5em) {
    .pure-u-sm-0, pure-u-md-0 {
        display: none;
    }

    .pure-button-assess {
        min-width: 50%;
        max-width: 50%;
        width: 50%;
    }

    .responsive_score {
        font-size: 0.65rem !important;
    }
}
/* SMALL */
@media screen and (min-width:35.5em) {
    .pure-u-sm-0, pure-u-md-0 {
        display: none;
    }

    .pure-button-assess {
        min-width: 50%;
        max-width: 50%;
        width: 50%;
    }

    .responsive_score {
        font-size: 0.65rem !important;
    }
}
/* MEDIUM */
@media screen and (min-width:48em) {
    .pure-u-sm-0 {
        display: revert;
        /*letter-spacing: normal;
        word-spacing: normal;
        vertical-align: top;
        text-rendering: auto;*/
    }
    .pure-u-md-0, pure-u-lg-0, pure-u-xl-0 {
        display: none;
    }

   
}
/* LARGE */
@media screen and (min-width:64em) {
    .pure-u-sm-0, pure-u-md-0 {
        display: revert;
        /*letter-spacing: normal;
        word-spacing: normal;
        vertical-align: top;
        text-rendering: auto;*/
    }

    .pure-u-lg-0, pure-u-xl-0 {
        display: none;
    }

    
}

/* X-LARGE */
@media screen and (min-width:80em) {
    .pure-u-sm-0, pure-u-md-0, pure-u-lg-0 {
        display: revert;
        /*letter-spacing: normal;
        word-spacing: normal;
        vertical-align: top;
        text-rendering: auto;*/
    }

    .pure-u-xl-0 {
        display: none;
    }

    
}

@media screen and (max-width:570px) {
    .pure-button-assess {
        min-width: 50%;
        max-width: 50%;
        width: 50%;
    }

   
}

.pure-button-white-o,
.pure-button-white-o:visited {
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 2em;
    padding: 1em;
}

    .pure-button-white-o:before {
        content: "";
    }

    .pure-button-white-o:focus,
    .pure-button-white-o.focus {
        color: #08c;
        background-color: transparent;
        border-color: #08c;
    }

    .pure-button-white-o:hover {
        color: #08c;
        background-color: transparent;
        border-color: #08c;
    }


.pure-button-babyblue-o,
.pure-button-babyblue-o:visited {
    color: #fff;
    background-color: #4a7d9d;
    border: 1px solid #fff;
    border-radius: 2em;
    padding-left: 1em;
    padding-right: 1em;
    margin:5px;
    transition: background-color 0.5s;
    display:inline-block;
}

    .pure-button-babyblue-o:before {
        content: "";
    }

    .pure-button-babyblue-o:focus,
    .pure-button-babyblue-o.focus {
        color: #fff;
        background-color: #759CBE;
        border-color: #fff;
        
    }

    .pure-button-babyblue-o:hover {
        color: #fff;
        background-color: #759CBE;
        border-color: #fff;
        
    }

    .pure-button-babyblue-o:disabled {
        color: #fff;
        background-color: #ccc;
        border-color: #fff;
        cursor: not-allowed;
        
    }

.pure-button-danger-o,
.pure-button-danger-o:visited {
    color: #fff;
    background-color: firebrick;
    border: 1px solid #fff;
    border-radius: 2em;
    padding-left: 1em;
    padding-right: 1em;
    transition: background-color 0.5s;
}

    .pure-button-danger-o:before {
        content: "";
    }

    .pure-button-danger-o:focus,
    .pure-button-danger-o.focus {
        color: #fff;
        background-color: red;
        border-color: #fff;
    }

    .pure-button-danger-o:hover {
        color: #fff;
        background-color: red;
        border-color: #fff;
    }

    .pure-button-danger-o:disabled {
        color: #fff;
        background-color: #ccc;
        border-color: #fff;
        cursor: not-allowed;
    }

/* #endregion */

/* #region SITE SPECIFIC CSS */


.search-box {
    width: 80%;
    border-radius: 5px;
    padding: 5px;
}

.search-link-button {
    width: 10%;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    vertical-align: middle;
}

.home_cal {
    margin-bottom: auto;
}

.home_cal_header {
    color: white;
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
    display: block;
}

.text-card {
    background: rgba(0,0,0,.75);
    border-radius: 10px;
    border: 1px solid #ddd;
}

    .text-card > p {
        font-size: 1rem;
    }

.player-card-header {
    background: rgba(128,128,128,.55);
    border-radius: 10px;
    width: 25vw;
}

.player-card {
    word-break: break-word;
    width: 10vw;
}

.player-icon {
    height: 16px;
    display: inline;
}

.player-card > p {
    font-size: 1rem;
}

.player-card-alt {
    /*background: rgba(0,0,128,.55);*/
    word-break: break-word;
    width: 10vw;
    background: rgba(51, 170, 51, .1);
}

.break {
    flex-basis: 100%;
    height: 0;
}

.tab-headers-container {
    width: 100%;
    display: block;
    background-color: transparent;
}

.tab-header {
    width: 25%;
    display: inline;
    float: left;
    background: rgba(51, 170, 51, .1);
    word-break: break-word;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

    .tab-header a {
        display: inline;
        width: 100%;
        height: 100%;
    }

.tab-content-header {
    width: 100%;
    display: block;
    background: rgba(51, 170, 51, .1);
    word-break: break-word;
}

.player-card-alt > p {
    font-size: 1rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.items-stretch {
    align-items: stretch;
}

.justify-center {
    justify-content: center;
}

    /*.flex > div {
        width: calc(100%/4);*/ /* Setting the width of columns at one fourth each */
    /*}*/

/*.text-card > a.active, a.*/

div.challheader {
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.h {
    color: white;
    font-size: 4rem;
    line-height: 1.5;
}

.words {
    color: white;
    font-size: 4rem;
    line-height: 1.5;
    text-align: center;
    display: inline-block;
}

    .words span {
        color: white;
        font-size: 4rem;
        display: inline-block;
        animation: fadein 2s ease-in-out infinite;
        text-shadow: none;
    }

@keyframes fadein {
    50% {
        color: blue;
    }
}

.words span:nth-child(2) {
    animation-delay: 0.25s;
}

.words span:nth-child(3) {
    animation-delay: 0.5s;
}

/*.words span:nth-child(4) {
    animation-delay: 1.5s;
}

.words span:nth-child(5) {
    animation-delay: 2s;
}

.words span:nth-child(6) {
    animation-delay: 2.5s;
}

.words span:nth-child(7) {
    animation-delay: 3s;
}

.words span:nth-child(8) {
    animation-delay: 3.5s;
}

.words span:nth-child(9) {
    animation-delay: 4s;
}

.words span:nth-child(10) {
    animation-delay: 4.5s;
}

.words span:nth-child(11) {
    animation-delay: 5s;
}

.words span:nth-child(12) {
    animation-delay: 5.5s;
}

.words span:nth-child(13) {
    animation-delay: 6s;
}

.words span:nth-child(14) {
    animation-delay: 6.5s;
}

.words span:nth-child(15) {
    animation-delay: 7s;
}

.words span:nth-child(16) {
    animation-delay: 7.5s;
}

.words span:nth-child(17) {
    animation-delay: 8s;
}

.words span:nth-child(18) {
    animation-delay: 8.5s;
}*/

.resp_cal {
    width: 100%;
}

.background-cover {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background-image: url('/images/table_blue_9.jpg');
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
}

.blue-cover {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background-image: url('/images/table_blue_9.jpg');
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
}

.tournaments-cover {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background-image: url('/images/tournament_tables.jpg');
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
}

.resp-logo {
    width: 20vw;
    display: block;
}

.resp-logo-oqba {
    width: 25vw;
    display: block;
}

.resp-contact-us-logo {
    height: 5vh;
}

.tiny-logo {
    height: 5vh;
    display: inline;
}

div.payout-container {
    width: 100%;
    overflow:hidden;
}


    div.payout-container > div {
        display: inline;
        float: left;
        width: 50%;
    }
.clear-fix:after {
    content: "";
    display: block;
    clear: both;
}


@media screen and (max-width: 600px) {
    .words span {
        font-size: 3rem;
        display: inline-block;
        animation: fadein 2s ease-in-out infinite;
    }

    .home_cal_header {
        color: white;
        font-size: 3rem;
        line-height: 1.5;
        text-align: center;
        display: inline-block;
    }

    .resp_cal {
        width: 100%;
        font-size: 1rem;
    }

    .home_cal {
        margin-bottom: auto;
    }

    .resp-logo {
        width: 20vw;
        display: block;
    }

    .resp-logo-oqba {
        width: 25vw;
        display: block;
    }

    .resp-contact-us-logo {
        height: 5vh;
    }
}

@media screen and (max-width: 415px) {
    .words span {
        font-size: 2rem;
        display: inline-block;
        animation: fadein 2s ease-in-out infinite;
    }

    .home_cal_header {
        color: white;
        font-size: 2rem;
        line-height: 1.5;
        text-align: center;
        display: inline-block;
    }

    .resp_cal {
        width: 100%;
        font-size: 6pt;
    }

    .home_cal {
        margin-bottom: 15vh;
    }

    .background-cover {
        height: 100vh;
        width: 100vw;
        object-fit: cover;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
        background-image: url('/images/portrait_blue_table.png');
        background-size: 100vw 100vh;
        background-repeat: no-repeat;
    }

    .blue-cover {
        height: 100vh;
        width: 100vw;
        object-fit: cover;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
        background-image: url('/images/table_blue_9.jpg');
        background-size: 100vw 100vh;
        background-repeat: no-repeat;
    }

    .tournaments-cover {
        height: 100vh;
        width: 100vw;
        object-fit: cover;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
        background-image: url('/images/tournament_tables.jpg');
        background-size: 100vw 100vh;
        background-repeat: no-repeat;
    }

    .resp-logo {
        width: 10vw;
        display: inline;
        padding-bottom: 1vh;
    }

    .resp-logo-oqba {
        width: 25vw;
        margin-left: 36vw;
        display: block;
    }

    .resp-contact-us-logo {
        width: 10vw;
        display: inline;
        float: right;
    }
}

.expand {
    margin: 0;
    padding: 0;
}

.txt-center {
    text-align: center;
}

.white-background {
    background-color: #fff;
}

.subtle {
    border: 1px dotted #ccc;
}

.floatover {
    position: relative;
    width: 100%;
    overflow-x: hidden !important;
}

.lightest-baby-blue {
    color: #BDC8E4;
}

.lighter-baby-blue {
    color: #8997BA;
}

.light-baby-blue {
    color: #41518A;
}

.baby-blue {
    color: #A8C4DD;
}

.deep-blue-area {
    background-color: #0F4C81;
    color: #fff;
}



.white {
    color: #fff;
}

.img-build {
    background-image: url("/images/Build.jpeg");
}

.img-explore {
    background-image: url("/images/Explore.jpg");
}

.img-publish {
    background-image: url("/images/Publish.jpg");
}

.img-ett {
    background-image: url('/images/shutterstock_550316641.jpg');
}

.slide-up-half {
    padding: 2em;
    min-height: 70%;
    background-color: black;
    color: white;
    opacity: 0;
    -webkit-transform: translateY(30%);
    transform: translateY(30%);
    transition: all 600ms cubic-bezier(.22, .81, .01, .99);
    -webkit-transition: all 600ms cubic-bezier(.22, .81, .01, .99);
}

.slide-up-container {
    background-size: cover;
    background-position: center;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    position: relative;
}

    .slide-up-container:hover {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }


        .slide-up-container:hover .slide-up-half {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.9;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }

.section-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    margin-top: 33vh;
    background-color: black;
    color: white;
}

.animate-enterprise {
    position: absolute;
    left: -100%;
    height: 35px;
    animation-duration: 15s;
    animation-name: flythrough;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-delay: 1s;
}

img.awesome {
    transition: all .3s ease;
}

    img.awesome:hover {
        transform: scale(1.5);
        background-color: #f8f8f8;
        margin: 100px auto;
    }

.popout {
    -webkit-transition: all .01s ease-in;
    transition: all .01s ease-in;
}

    .popout:hover {
        -webkit-transform: scale(1.2) !important;
        transform: scale(1.2) !important;
    }

@keyframes flythrough {
    0% {
        left: -100%;
    }

    to {
        left: 150%;
    }
}



.disappear {
    height: 0;
}



.top-home {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("/images/HFaU.gif");
    text-align: center;
    /* NEEDED FOR THE ENTERPRISE TO BEHAVE ON MOBILE DEVICES */
    position: relative;
    overflow-x: hidden !important;
}



.top-about {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("/images/about-banner-2.jpg");
    text-align: center;
}

.top-propose {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("/images/propose-banner.jpg");
    text-align: center;
}

.top-chatbot-distribution {
    background-position: center; /* Center the image */
    background-size: contain; /* Resize the background image to cover the entire container */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-image: url("/images/bc-login_back-small-3.png");
    text-align: center;
}

.top-chatbot-MCO {
    background-position: center; /* Center the image */
    background-size: contain; /* Resize the background image to cover the entire container */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-image: url("/images/bc-login_back-small-4.png");
    text-align: center;
}

.top-chatbot-PublicEnquiries {
    background-position: center; /* Center the image */
    background-size: contain; /* Resize the background image to cover the entire container */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-image: url("/images/bc-login_back-small-5.png");
    text-align: center;
}

.top-chatbot-TypeC {
    background-position: center; /* Center the image */
    background-size: contain; /* Resize the background image to cover the entire container */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-image: url("/images/banner-innovation-ai-2.png");
    text-align: center;
}

.top-chatbotinfo {
    text-align: center;
    background-image: url('/images/bg-banner-icons.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 100%;
}

    .top-chatbotinfo > .left {
        width: 50%;
        height: 100%;
        float: left;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }



    .top-chatbotinfo > .right {
        width: 50%;
        height: 100%;
        float: left;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

.top-chatbotassess {
    background-image: url('/images/bg-banner-icons.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 100%;
}

    .top-chatbotassess > .left {
        width: 50%;
        height: 100%;
        float: left;
    }



    .top-chatbotassess > .right {
        width: 50%;
        height: 100%;
        float: left;
    }

.mid-chatbotinfo {
    /*container placeholder for sub-element stylings*/
}

    .mid-chatbotinfo > .left {
        width: 50%;
        height: 100%;
        float: left;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }



    .mid-chatbotinfo > .right {
        width: 50%;
        height: 100%;
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 5%;
        padding-right: 5%;
    }

.chatbot-assessment-background {
    background-image: url('/images/bg-banner-plain.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    /*background-size: auto 100%;*/
    min-height: 100%;
    max-height: 100%;
    max-width: 100%;
    min-width: 100%;
}

.chatbot-assessment-q-header {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    text-align: center;
}


.stick-to-bottom {
    position: sticky;
    left: 0;
    bottom: 0;
}

.stick-to-top {
    position: sticky;
    left: 0;
    top: 0;
}

.info-card-image {
    width: 100%;
    min-height: 20%;
    height: 20%;
    max-height: 20%;
    overflow: hidden;
}

    .info-card-image > img {
        height: 80%;
        max-height: 80%;
    }

.info-card-header {
    width: 100%;
    max-width: 100%;
    min-height: 20%;
    height: 20%;
    max-height: 20%;
    white-space: normal;
    overflow-wrap: break-word;
    overflow: hidden;
}

.info-card-text {
    width: 100%;
    min-height: 50%;
    height: 50%;
    max-height: 50%;
    overflow: hidden;
    overflow-y: auto;
}

.info-card-bottom {
    max-width: 100%;
    width: 100%;
    min-width: 100%;
    min-height: 10%;
    height: 10%;
    max-height: 10%;
    overflow: hidden;
}

.info-card-bottom-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
}
    /* ATTEMPT AT CENTERING VERTICALLY. NEEDS TWEAKING */
    .info-card-bottom-button-container > a, input[type=button] {
        white-space: normal;
        word-wrap: break-word;
    }

.whtspc {
    word-wrap: break-word;
    white-space: normal;
}

.chatbot-assessment-left-50 {
    min-width: 50%;
    max-width: 50%;
    width: 50%;
    float: left;
    text-align: center;
    padding-top: 1vh;
    padding-bottom: 1vh;
}

.chatbot-assessment-card {
    border: 1px solid #707070;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
    background-color: #f1f1f1;
    border-radius: 2em;
    padding: 1em;
}

    .chatbot-assessment-card.top {
        position: relative;
        min-height: 100%;
        height: 100%;
        max-height: 100%;
        width: 90%;
        max-width: 90%;
        min-width: 90%;
    }

    .chatbot-assessment-card.regular {
        position: relative;
        padding-top: 0;
        width: 90%;
        max-width: 90%;
        min-width: 90%;
    }

    .chatbot-assessment-card.centerme {
        margin: 0 auto;
    }

.padme {
    padding: 1.5vh;
}

.mini-pad {
    padding: .5vh;
}

.mini-pad-tb{
    padding-top: .5vh;
    padding-bottom: .5vh;
}

.mini-pad-lr {
    padding-left: .5vh;
    padding-right: .5vh;
}

.mini-marg{
    margin: .5vh;

}
.mini-marg-tb {
    margin-top: .5vh;
    margin-bottom: .5vh;
}

.mini-marg-lr {
    margin-left: .5vh;
    margin-right: .5vh;
}



.tabs-pad {
    padding: 0 2vh 2vh 2vh;
}

.pure-button-assess {
    min-width: 95%;
    max-width: 95%;
    width: 95%;
}

    .pure-button-assess:hover {
        background-color: #4274A0;
    }


.assessment-card {
    color: #41518A;
    border: 1px solid #707070;
    border-radius: 2em;
    padding: 1em;
    height: 50%;
    min-height: 50%;
    width: 100%;
    min-width: 100%;
    background-color: white;
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

    .assessment-card > h4 {
        margin: 0;
    }



.cards-container {
    display: table; /* Make the container element behave like a table */
    width: 100%; /* Set full-width to expand the whole page */
    border-collapse: separate;
    border-spacing: 1vh;
    /*table-layout: fixed;*/
}

.cards-column {
    display: table-cell; /* Make elements inside the container behave like table cells */
}

.cards-third {
    width: 33%;
}

@media only screen and (max-width: 1125px) {
    .cards-column {
        display: block;
        width: 100%;
    }
}

@media only screen and (max-width: 1020px) {
    .cards-column {
        display: block;
        width: 50%;
        border: 1px solid green;
    }
}

@media only screen and (max-width: 900px) {
    .cards-column {
        display: block;
        width: 50%;
        border: 1px solid green;
    }
}

@media only screen and (max-width: 600px) {
    .cards-column {
        display: block;
        width: 100%;
    }
}



/* Style the counter cards */
.card-chatbotinfo {
    border: 1px solid #707070;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
    background-color: #f1f1f1;
    border-radius: 2em;
    padding: 1em;
    text-align: center;
    min-height: 100%;
    height: 100%;
}

    .card-chatbotinfo > .top-image {
        height: 20vh;
    }

        .card-chatbotinfo > .top-image > img {
            height: 90%;
        }

    .card-chatbotinfo > .header {
        height: 10vh;
    }

    .card-chatbotinfo > .content {
        height: 40vh;
    }

    .card-chatbotinfo > .footer {
        height: 20vh;
    }

.chatbot-chat-container {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
}

.chatbot-chat-window {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.margin-bot-top {
    margin: 2vh 0 2vh 0;
}

.margin-bot {
    margin-bottom: 2vh;
}

.margin-top {
    margin-top: 2vh;
}


/*MOSTLY USED FOR TESTING PURPOSES*/
.bordered {
    border: 1px solid black;
}

    .bordered.red {
        border: 1px solid red;
    }

    .bordered.green {
        background: repeating-linear-gradient( 45deg, green, green 10px, #fff 10px, #fff 20px );
        border: 1px solid green;
    }

    .bordered.orange {
        background: repeating-linear-gradient( 45deg, #ff5722, #ff5722 10px, #fff 10px, #fff 20px );
    }
    .bordered.whitebrd {
        /*background: repeating-linear-gradient( 45deg, green, green 10px, #fff 10px, #fff 20px );*/
        border: 1px solid white;
    }

.chatbot-assessment-progress-bar {
    border-radius: 14pt;
    padding: 0;
    background: white;
    border: 1px solid #0F4C81;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    margin-bottom: 1vh;
}

    .chatbot-assessment-progress-bar > div {
        text-align: center;
        color: white;
        background: #0F4C81;
        overflow: hidden;
        white-space: nowrap;
        border-radius: 14pt;
        padding: 1em;
        animation: progress-bar 2s;
    }

        .chatbot-assessment-progress-bar > div[style="width: 100%;"] {
            text-align: center;
            color: #0F4C81;
            background: #fff;
            border: 1px solid #0F4C81;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
            overflow: hidden;
            white-space: nowrap;
            padding: 1em;
            border-radius: 14pt;
            animation: progress-bar 2s;
        }

.chatbot-assessment-error {
    color: red;
    display: block;
    background-image: url("/images/Lol_exclam.png");
    background-size: 16px 16px;
    padding-left: 16px;
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: center;
}

.chatbot-assessment-question {
    /*min-height: 90%;
    max-height: 90%;
    height: 90%;*/
}

    .chatbot-assessment-question input[type=radio] {
        display: inline-block;
    }

        .chatbot-assessment-question input[type=radio] ~ label {
            padding: 1vh;
            display: inline-block;
        }

    .chatbot-assessment-question input[type=text] {
        max-width: 100%;
        min-width: 70%;
        width: 70%;
        border: 1px solid #0F4C81;
        border-radius: 2em;
        padding: 1em;
        color: #0F4C81;
        background-color: #fff;
        margin: 1vh;
    }

        .chatbot-assessment-question input[type=text] ~ label {
            padding: 1vh;
            display: inline-block;
        }

        .chatbot-assessment-question input[type=text]:focus {
            background-color: #0F4C81;
            color: #fff;
            outline: none;
        }

        .chatbot-assessment-question input[type=text]::-webkit-input-placeholder {
            color: #0F4C81;
        }

        .chatbot-assessment-question input[type=text]:focus::-webkit-input-placeholder {
            color: #fff;
        }

        .chatbot-assessment-question input[type=text]::-moz-placeholder {
            color: #0F4C81;
        }

        .chatbot-assessment-question input[type=text]:focus::-moz-placeholder {
            color: #fff;
        }

        .chatbot-assessment-question input[type=text]:-ms-input-placeholder {
            color: #0F4C81;
        }

        .chatbot-assessment-question input[type=text]:focus:-ms-input-placeholder {
            color: #fff;
        }

    .chatbot-assessment-question textarea {
        max-width: 98%;
        min-width: 98%;
        width: 98%;
        height: 80%;
        min-height: 80%;
        max-height: 80%;
        border: 1px solid #0F4C81;
        border-radius: 2em;
        padding: 1em;
        color: #0F4C81;
        background-color: #fff;
        margin: 1vh;
        resize: none;
    }

        .chatbot-assessment-question textarea:focus {
            background-color: #0F4C81;
            color: #fff;
            outline: none;
        }

        .chatbot-assessment-question textarea::-webkit-input-placeholder {
            color: #0F4C81;
        }

        .chatbot-assessment-question textarea:focus::-webkit-input-placeholder {
            color: #fff;
        }

        .chatbot-assessment-question textarea::-moz-placeholder {
            color: #0F4C81;
        }

        .chatbot-assessment-question textarea:focus::-moz-placeholder {
            color: #fff;
        }

        .chatbot-assessment-question textarea:-ms-input-placeholder {
            color: #0F4C81;
        }

        .chatbot-assessment-question textarea:focus:-ms-input-placeholder {
            color: #fff;
        }

.height-70 {
    min-height: 70% !important;
    max-height: 70% !important;
    height: 70% !important;
}

.chatbot-assessment-nav {
    display: block;
    text-align: center;
    min-width: 50%;
    max-width: 50%;
    width: 50%;
    padding-right: 5px;
    float: left;
}

    .chatbot-assessment-nav .right {
        float: right;
    }

@keyframes progress-bar1 {
    0% {
        width: 0;
    }
}

@keyframes progress-bar2 {
    0% {
        width: 6.25%;
    }
}

@keyframes progress-bar3 {
    0% {
        width: 12.5%;
    }
}

@keyframes progress-bar4 {
    0% {
        width: 18.75%;
    }
}

@keyframes progress-bar5 {
    0% {
        width: 25%;
    }
}

@keyframes progress-bar6 {
    0% {
        width: 31.25%;
    }
}

@keyframes progress-bar7 {
    0% {
        width: 37.5%;
    }
}

@keyframes progress-bar8 {
    0% {
        width: 43.75%;
    }
}

@keyframes progress-bar9 {
    0% {
        width: 50%;
    }
}

@keyframes progress-bar10 {
    0% {
        width: 56.25%;
    }
}

@keyframes progress-bar11 {
    0% {
        width: 62.5%;
    }
}

@keyframes progress-bar12 {
    0% {
        width: 68.75%;
    }
}

@keyframes progress-bar13 {
    0% {
        width: 75%;
    }
}

@keyframes progress-bar14 {
    0% {
        width: 81.25%;
    }
}

@keyframes progress-bar15 {
    0% {
        width: 87.5%;
    }
}

@keyframes progress-bar16 {
    0% {
        width: 93.75%;
    }
}

/* #region TypeC ChatBot Styles */
.typec-chat-container {
    border-color: rgb(35, 68, 126);
    border-radius: 25px;
    border-style: solid;
    border-width: 2px;
    padding-top: 20px;
    border-bottom: none;
}

.typec-chat-answer {
    padding: 5pt;
    height: 68vh;
    max-height: 68vh;
    min-height: 68vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    width: 100%;
}

.typec-chat-question-container {
    border-radius: 25px;
    border-color: rgb(35, 68, 126);
    border-style: solid;
    border-width: 2px;
    height: 2%;
    max-height: 2%;
    width: 100%;
}

.typec-question-padding-container {
    align-items: center;
    display: flex;
    height: 100%;
    margin-top: 0px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    position: relative;
    width: 100%;
}

.typec-question-textbox {
    background-color: rgb(255, 255, 255);
    border-color: rgb(0, 0, 0);
    border-style: none;
    border-width: 0px;
    cursor: text;
    font-variant-caps: normal;
    font-variant-east-asian: normal;
    font-variant-ligatures: normal;
    font-variant-numeric: normal;
    outline-style: none;
    height: 100%;
    margin: 0px;
    overflow-x: visible;
    overflow-y: visible;
    padding: 0px;
    width: 95%;
}

    .typec-question-textbox::placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: rgb(35, 68, 126);
        opacity: 1; /* Firefox */
    }

.typec-question-send-button {
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0);
    border-style: none;
    cursor: pointer;
    display: inline-block;
    height: 100%;
    margin: 0px;
    outline-style: none;
    overflow-x: visible;
    overflow-y: visible;
    padding: 0px;
    text-align: center;
    width: 5%;
}

.typec-chatbot-avatar-container {
    display: block;
    background-color: rgb(0, 99, 177);
    height: 80px;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    width: 80px;
    float: left;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    text-align: center;
}

.typec-chatbot-avatar-image {
    display: inline-block;
    height: 80%;
    /*position: absolute;
    top: 0;
    left: -10px;*/
    transform: matrix(1.25, 0, 0, 1.25, -16, 0);
    /*min-width: 100%;
    width: 100%;
    max-width: 100%;*/
}

.typec-chatbot-answer-container {
    padding-left: 1%;
    padding-right: 1%;
    display: block;
    min-height: 80px;
    overflow-x: hidden;
    overflow-y: hidden;
    min-width: 80%;
    width: 80%;
    max-width: 80%;
    /*word-break: break-word;*/
    float: left;
}

.typec-chatbot-answer-bubble {
    padding-left: 1%;
    padding-right: 1%;
    background-color: rgb(204, 204, 204);
    border: 1px solid rgb(230, 230, 230);
    border-radius: 10px;
    display: block;
    min-height: 40px;
    overflow-x: hidden;
    overflow-y: hidden;
    max-width: 100%;
    word-break: break-word;
    float: left;
}

    .typec-chatbot-answer-bubble > p {
        margin: 0;
    }


.typec-chatbot-answer-timestamp {
    padding-left: 1%;
    padding-right: 1%;
    display: block;
    min-height: 40px;
    max-height: 40px;
    overflow-x: hidden;
    overflow-y: hidden;
    min-width: 100%;
    word-break: break-word;
    float: left;
}

.typec-timestamp {
    margin: 0;
    font-size: small;
}

.typec-user-avatar-container {
    display: block;
    background-color: rgb(0, 99, 177);
    height: 80px;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    width: 80px;
    float: right;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}

.typec-user-avatar-image {
    display: block;
    height: 90%;
    position: absolute;
    top: 40px;
    left: 40px;
    transform: matrix(1, 0, 0, 1, -40, -40);
    width: 100%;
}

.typec-user-answer-container {
    padding-left: 1%;
    padding-right: 1%;
    display: block;
    min-height: 80px;
    overflow-x: hidden;
    overflow-y: hidden;
    min-width: 80%;
    width: 80%;
    max-width: 80%;
    /*word-break: break-word;*/
    float: right;
}

.typec-user-answer-bubble {
    padding-left: 1%;
    padding-right: 1%;
    background-color: rgb(0, 132, 255);
    border: 1px solid rgb(26, 158, 255);
    border-radius: 10px;
    display: block;
    min-height: 40px;
    overflow-x: hidden;
    overflow-y: hidden;
    max-width: 100%;
    word-break: break-word;
    float: right;
    color: white;
}

    .typec-user-answer-bubble > p {
        margin: 0;
    }

.typec-user-answer-timestamp {
    padding-left: 1%;
    padding-right: 1%;
    display: block;
    min-height: 40px;
    max-height: 40px;
    overflow-x: hidden;
    overflow-y: hidden;
    min-width: 100%;
    word-break: break-word;
    float: right;
    text-align: right;
}

.typec-chat-spacer {
    clear: both;
    min-height: 10px;
}

/* #endregion */

/* #region TypeC Admin Interface Styles */
.typec-admin-leftmenu-container {
    position: relative;
    margin-left: 0.5vw;
    display: block;
    max-height: 25vh;
    height: 25vh;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: black;
    border: 1px solid #0F4C81;
    border-radius: 5pt;
}

    .typec-admin-leftmenu-container:hover {
        background-color: transparent;
        border-radius: 5pt;
    }

.typec-admin-leftmenu-item {
    display: block;
    min-height: 5vh;
    height: 5vh;
    max-height: 5vh;
    background-color: black;
    color: white;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #0F4C81;
}

    .typec-admin-leftmenu-item:hover {
        background-color: transparent;
        border: none;
    }



.typec-admin-leftmenu-linkbutton {
    display: block;
    color: white;
    padding-left: 0.5vw;
    background-color: black;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    padding-top: 0.25em;
    word-break: break-word;
}

    .typec-admin-leftmenu-linkbutton:hover {
        padding-left: 1vw;
    }

.typec-admin-leftmenu-linkbutton-active {
    display: block;
    color: white;
    padding-left: 0.5vw;
    background-color: #0F4C81;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    padding-top: 0.25em;
    word-break: break-word;
}



.typec-admin-error {
    width: 100%;
    display: block;
    color: red;
    margin-bottom: 1vh;
}

.typec-admin-login-block {
    float: left;
    width: 50%;
}

.typec-admin-login-button-block {
    width: 100%;
    text-align: center;
}

.typec-admin-section-container {
    width: 100%;
    padding-left: 2vw;
    text-align: center;
}

.typec-admin-login-form {
    display: inline-block;
    width: 50%;
    margin: 0;
    border: 1px solid #0F4C81;
    border-radius: 1em;
    padding: 1em;
}

.typec-admin-textbox {
    border-color: #0F4C81;
    background-color: #0F4C81;
    border-radius: 0.5em;
    color: white;
    padding: 0.2em;
}

    .typec-admin-textbox::placeholder {
        color: white;
    }

    .typec-admin-textbox:focus {
        outline: none;
        border-color: #0F4C81;
        background-color: white;
        color: black;
    }

.typec-admin-qna-small-del-button {
    width: 20%;
    display: inline-block;
}

    .typec-admin-qna-small-del-button:hover {
        color: #0F4C81;
        box-shadow: 0 0 0 1000px red;
    }

.typec-admin-qna-textbox-container {
    width: 100%;
    max-height: 5vh;
    height: 5vh;
    min-height: 5vh;
    overflow: hidden;
    display: block;
    border-bottom: 1px solid #ccc;
}


.typec-admin-qna-textbox {
    border: none;
    border-bottom: 1px solid #ccc;
    /*simulates 2px border*/
    margin-bottom: 1px;
    /*border-radius: 0.5em;*/
    color: #0F4C81;
    display: inline;
    padding: 0.2em;
    transition: all 0.2s;
    background-color: transparent;
    min-width: 80%;
    width: 80%;
    max-width: 80%;
    z-index: 1;
    float: left;
}

typec-admin-qna-textbox-button {
    min-width: 20%;
    width: 20%;
    max-width: 20%;
    float: right;
}

.typec-admin-qna-textbox:hover {
    border: none;
    border-bottom: 2px solid #0F4C81;
    margin-bottom: 0;
    border-radius: 0.5em;
    color: #0F4C81;
    font-weight: bold;
}

.typec-admin-qna-textbox::placeholder {
    color: #0F4C81;
}

.typec-admin-qna-textbox:focus {
    outline: none;
    border-bottom: 2px solid #0F4C81;
    margin-bottom: 0;
    /*simulates 2px border*/
    color: black;
    font-weight: bold;
}

.typec-admin-qna-textbox-disabled {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    /*simulates 2px border*/
    margin-bottom: 1px;
    /*border-radius: 0.5em;*/
    color: #0F4C81;
    display: inline;
    padding: 0.2em;
    transition: all 0.2s;
    background-color: rgba(0, 0, 0, 0.16);
    min-width: 80%;
    width: 80%;
    max-width: 80%;
    z-index: 1;
}

    .typec-admin-qna-textbox-disabled:hover {
        border: none;
        border-bottom: 2px solid #0F4C81;
        margin-bottom: 0;
        border-radius: 0.5em;
        color: #0F4C81;
        font-weight: bold;
        background-color: rgba(0, 0, 0, 0.16);
        opacity: 0.5;
        cursor: not-allowed;
    }

.typec-admin-qna-textarea {
    background-color: transparent;
    border: 1px solid #ccc;
    /*simulates 2px border*/
    margin: 1px;
    color: #0F4C81;
    display: block;
    padding: 0.2em;
    border-radius: 0.5em;
    transition: all 0.2s;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
}

    .typec-admin-qna-textarea:hover {
        border: none;
        border: 2px solid #0F4C81;
        margin: 0;
        color: #0F4C81;
        font-weight: bold;
    }

    .typec-admin-qna-textarea::placeholder {
        color: white;
    }

    .typec-admin-qna-textarea:focus {
        outline: none;
        border-bottom: 2px solid #0F4C81;
        margin-bottom: 0;
        /*simulates 2px border*/
        color: black;
        font-weight: bold;
    }

.typec-admin-textarea {
    border-color: #0F4C81;
    background-color: #0F4C81;
    border-radius: 0.5em;
    color: white;
    padding: 0.2em;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
}

    .typec-admin-textarea::placeholder {
        color: white;
    }

    .typec-admin-textarea:focus {
        outline: none;
        border-color: #0F4C81;
        background-color: white;
        color: black;
    }

.tyepc-admin-news-container {
    display: inline-block;
    width: 100%;
    min-height: 50vh;
    margin: 0;
    border: 1px solid #0F4C81;
    border-radius: 1em;
    padding: 1em;
}

.typec-admin-news-newsitem-title {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    display: block;
    background-color: #0F4C81;
    color: white;
    border: 1px solid #ccc;
    box-shadow: 0.2vh 0.2vw #ccc;
    margin-bottom: 1vh;
    border-radius: 0.5em;
    padding: 0.2em;
    font-weight: bold;
    overflow: hidden;
}

.typec-admin-news-newsitem-content {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    display: block;
    border: 1px solid #0F4C81;
    border-radius: 0.5em;
    padding: 0.2em;
    overflow: hidden;
    box-shadow: 1vh 1vw #ccc;
}

.typec-admin-workit {
    display: inline-block;
    width: 100%;
    text-indent: 33%;
    transition: all 1s;
    text-align: left;
}

    .typec-admin-workit:hover {
        text-indent: 0%;
        color: #0F4C81;
        font-weight: bold;
    }

.typec-full-right {
    width: 100%;
    text-align: right;
    padding: 1em;
}

.typec-admin-table {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

.typec-admin-table-animated {
    margin-top: -60%;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

.typec-admin-table-header-row {
    border-bottom: 1px solid black;
    background-color: grey;
    color: black;
    font-weight: bold;
}

.aqua {
    background-color: #d5e1df;
}

.typec-admin-table-row {
    border-bottom: 1px solid black;
}

.typec-admin-table-row-alt {
    background-color: lightgray;
    border-bottom: 1px solid black;
}

.typec-admin-table-fakecell25 {
    display: inline;
    float: left;
    border-left: 1px solid white;
    border-right: 1px solid white;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    width: 25%;
    text-align: left;
    padding-left: 1%;
}

.invisible-link, invisible-link:hover, invisible-link:active, invisible-link:visited {
    text-decoration: none;
    color: black;
}

.typec-admin-table-fakecell15 {
    display: inline;
    float: left;
    border-left: 1px solid white;
    border-right: 1px solid white;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    width: 15%;
    text-align: left;
    padding-left: 1%;
}

.typec-admin-table-fakecell10 {
    display: inline;
    float: left;
    border-left: 1px solid white;
    border-right: 1px solid white;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    width: 10%;
    text-align: left;
    padding-left: 1%;
}

.invisible-link:link > div, .invisible-link:visited > div, .invisible-link:active > div {
    text-decoration: none;
    color: black;
}

.invisible-link:hover > div {
    background-color: #0F4C81;
    color: white;
    cursor: pointer;
}



/*.typec-admin-invisible-link:link, .typec-admin-invisible-link:visited {
    text-decoration: none;
    color: black;
}


    .typec-admin-invisible-link:hover, .typec-admin-invisible-link:active {
        background-color: #0F4C81 !important;
        color: white !important;
        cursor: pointer;
    }*/

.typec-admin-table-cell5 {
    width: 5%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell10 {
    width: 10%;
    overflow-y: auto;
    background-color: transparent;
}
/* default table cell width is 15% */
.typec-admin-table-cell {
    width: 15%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell15 {
    width: 15%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell20 {
    width: 20%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell25 {
    width: 25%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell30 {
    width: 30%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell35 {
    width: 35%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell40 {
    width: 40%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell45 {
    width: 45%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell50 {
    width: 50%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell55 {
    width: 55%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell60 {
    width: 60%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell65 {
    width: 65%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell70 {
    width: 70%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell75 {
    width: 75%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell80 {
    width: 80%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell85 {
    width: 85%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell90 {
    width: 90%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell95 {
    width: 95%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell100 {
    width: 100%;
    overflow-y: auto;
    background-color: transparent;
}
/* defautl table cell width is 15% */
.typec-admin-table-cell {
    width: 15%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell50 {
    width: 50%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell-actions {
    width: 5%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell-id {
    width: 5%;
    overflow-y: auto;
    background-color: transparent;
}

.typec-admin-table-cell-content {
    width: 100%;
    min-height: 15vh;
    max-height: 60vh;
    height: 30vh;
    background-color: transparent;
}

.typec-admin-table-cell-content-profile {
    width: 100%;
    min-height: 7vh;
    max-height: 7vh;
    height: 7vh;
    background-color: transparent;
    text-align: left;
}

.text-left {
    text-align: left;
}

.typec-qna-profile-form {
    display: block;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
}

.typec-qna-profile-adminform {
    display: block;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    height: 100%;
    max-height: 100%;
    border: 1px solid #ccc;
    background-color: lightblue;
    overflow: hidden;
}

.typec-admin-error {
    color: red;
    font-weight: bold;
}

.typec-admin-success {
    color: green;
    font-weight: bold;
    width: 100%;
}

/* #region TypeC Admin Left Menu */

.admin-menu-container {
    display: block;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    padding-left: 1vw;
}

.admin-menu-drop-container {
    display: block;
    min-height: 5%;
    height: 5%;
    max-height: 5%;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    box-shadow: 2px 0 18px rgba(0, 0, 0, 0.26);
    margin-bottom: 1vh;
}

.admin-menu-botdrop {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    height: 100%;
    max-height: 100%;
}

.admin-menu {
    display: block;
    min-width: 20%;
    width: auto;
    max-width: 100%;
}

.admin-menu-item {
    display: block;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    min-height: 5vh;
    height: 5vh;
    max-height: 5vh;
    overflow: hidden;
    transition: all 0.06125s ease-in-out;
    cursor: pointer;
}

    .admin-menu-item:hover {
        border: 1px solid black;
        border-radius: 0.3vw;
        box-shadow: 2px 0 18px rgba(0, 0, 0, 0.26);
        transform: scale(1.125);
    }

        .admin-menu-item:hover > .admin-menu-item-icon {
            box-shadow: none;
            border: none;
            border-radius: 0;
        }

        .admin-menu-item:hover > .admin-menu-item-text {
            display: inline;
        }

.admin-menu-item-icon {
    display: inline;
    padding-left: 5%;
    min-width: 3vw;
    width: 3vw;
    max-width: 3vw;
    min-height: 100%;
    height: 100%;
    max-height: 100%;
    float: left;
    overflow: hidden;
    border: 1px solid black;
    border-radius: 0.3vw;
    box-shadow: 2px 0 18px rgba(0, 0, 0, 0.26);
    /*transition: all 0.125s ease-in-out;*/
    cursor: pointer;
    text-align: center;
}

.admin-menu-item-text {
    display: none;
    min-width: 7.5vw;
    width: 7.5vw;
    max-width: 7.5vw;
    min-height: 100%;
    height: 100%;
    max-height: 100%;
    float: right;
    overflow: hidden;
    transition: all 0.06125s ease-in-out;
    cursor: pointer;
}

.admin-menu-link-icon > svg {
    width: 100%;
}

.admin-menu-link-icon:link, .admin-menu-link-icon:visited, .admin-menu-link-icon:hover, .admin-menu-link-icon:active {
    text-decoration: none;
    color: -webkit-link;
}

.admin-menu-link:link, .admin-menu-link:visited, .admin-menu-link:hover, .admin-menu-link:active {
    text-decoration: none;
    color: black;
}

.bottom-border {
    border-bottom: 1px solid rgba(255,255,255,.25);
}

.bottom-border-alt {
    border-bottom: 1px solid black;
}

.typec-admin-qna-question-container {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.typec-admin-qna-question-textbox {
    display: inline;
    min-width: 80%;
    width: 80%;
    max-width: 80%;
    overflow: hidden;
    float: left;
}

.typec-admin-qna-question-button {
    display: inline;
    min-width: 20%;
    width: 20%;
    max-width: 20%;
    overflow: hidden;
    float: left;
}
/* #endregion */
/* #region Flashing Fields */
.flash {
    -moz-animation: flash 1s ease-out;
    -moz-animation-iteration-count: 1;
    -webkit-animation: flash 1s ease-out;
    -webkit-animation-iteration-count: 1;
    -ms-animation: flash 1s ease-out;
    -ms-animation-iteration-count: 1;
}

@keyframes flash {
    0% {
        background-color: transparent;
    }

    20% {
        background-color: #0F4C81;
        text-align: right;
    }

    40% {
        background-color: transparent;
        text-align: right;
    }

    60% {
        background-color: #0F4C81;
        text-align: right;
    }

    70% {
        background-color: transparent;
    }

    80% {
        background-color: #0F4C81;
        text-align: right;
    }

    90% {
        background-color: transparent;
    }

    95% {
        background-color: #0F4C81;
        content: "Saved...";
    }

    100% {
        background-color: transparent;
    }
}

@-webkit-keyframes flash {
    0% {
        background-color: transparent;
    }

    20% {
        background-color: #0F4C81;
        text-align: right;
    }

    40% {
        background-color: transparent;
        text-align: right;
    }

    60% {
        background-color: #0F4C81;
        text-align: right;
    }

    70% {
        background-color: transparent;
    }

    80% {
        background-color: #0F4C81;
        text-align: right;
    }

    90% {
        background-color: transparent;
    }

    95% {
        background-color: #0F4C81;
        content: "Saved...";
    }

    100% {
        background-color: transparent;
    }
}

@-moz-keyframes flash {
    0% {
        background-color: transparent;
    }

    20% {
        background-color: #0F4C81;
        text-align: right;
    }

    40% {
        background-color: transparent;
        text-align: right;
    }

    60% {
        background-color: #0F4C81;
        text-align: right;
    }

    70% {
        background-color: transparent;
    }

    80% {
        background-color: #0F4C81;
        text-align: right;
    }

    90% {
        background-color: transparent;
    }

    95% {
        background-color: #0F4C81;
        content: "Saved...";
    }

    100% {
        background-color: transparent;
    }
}

@-ms-keyframes flash {
    0% {
        background-color: transparent;
    }

    20% {
        background-color: #0F4C81;
        text-align: right;
    }

    40% {
        background-color: transparent;
        text-align: right;
    }

    60% {
        background-color: #0F4C81;
        text-align: right;
    }

    70% {
        background-color: transparent;
    }

    80% {
        background-color: #0F4C81;
        text-align: right;
    }

    90% {
        background-color: transparent;
    }

    95% {
        background-color: #0F4C81;
        content: "Saved...";
    }

    100% {
        background-color: transparent;
    }
}

.flashred {
    -moz-animation: flashred 1s ease-out;
    -moz-animation-iteration-count: 1;
    -webkit-animation: flashred 1s ease-out;
    -webkit-animation-iteration-count: 1;
    -ms-animation: flashred 1s ease-out;
    -ms-animation-iteration-count: 1;
}

@keyframes flashred {
    0% {
        background-color: transparent;
    }

    20% {
        background-color: red;
        color: white;
        text-align: center;
    }

    40% {
        background-color: transparent;
    }

    60% {
        background-color: red;
        color: white;
        text-align: center;
    }

    70% {
        background-color: transparent;
    }

    80% {
        background-color: red;
        color: white;
        text-align: center;
    }

    90% {
        background-color: transparent;
    }

    95% {
        background-color: red;
        color: white;
        text-align: center;
        content: "!! ERROR !!";
    }

    100% {
        background-color: transparent;
    }
}

@-webkit-keyframes flashred {
    0% {
        background-color: transparent;
    }

    20% {
        background-color: red;
        color: white;
        text-align: center;
    }

    40% {
        background-color: transparent;
    }

    60% {
        background-color: red;
        color: white;
        text-align: center;
    }

    70% {
        background-color: transparent;
    }

    80% {
        background-color: red;
        color: white;
        text-align: center;
    }

    90% {
        background-color: transparent;
    }

    95% {
        background-color: red;
        color: white;
        text-align: center;
        content: "!! ERROR !!";
    }

    100% {
        background-color: transparent;
    }
}

@-moz-keyframes flashred {
    0% {
        background-color: transparent;
    }

    20% {
        background-color: red;
        color: white;
        text-align: center;
    }

    40% {
        background-color: transparent;
    }

    60% {
        background-color: red;
        color: white;
        text-align: center;
    }

    70% {
        background-color: transparent;
    }

    80% {
        background-color: red;
        color: white;
        text-align: center;
    }

    90% {
        background-color: transparent;
    }

    95% {
        background-color: red;
        color: white;
        text-align: center;
        content: "!! ERROR !!";
    }

    100% {
        background-color: transparent;
    }
}

@-ms-keyframes flashred {
    0% {
        background-color: transparent;
    }

    20% {
        background-color: red;
        color: white;
        text-align: center;
    }

    40% {
        background-color: transparent;
    }

    60% {
        background-color: red;
        color: white;
        text-align: center;
    }

    70% {
        background-color: transparent;
    }

    80% {
        background-color: red;
        color: white;
        text-align: center;
    }

    90% {
        background-color: transparent;
    }

    95% {
        background-color: red;
        color: white;
        text-align: center;
        content: "!! ERROR !!";
    }

    100% {
        background-color: transparent;
    }
}

.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}


/* #endregion*/

/* #endregion */

/* #endregion */
