html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #fff;
    background-color: #2CB34A;
    position: relative;
    padding-bottom: 60px;
}

div.how-to-play {
    border: none;
    border-radius: 50%;
    padding: 3px;

}

div.how-to-play button {
    background-color: transparent;
    color: #fff;
    border: none;
}

div.tile-button {
    display: flex;
    justify-content: space-around;
}

.dashboard-section {
    background-color: #2cb34a;
    margin: 1rem 0px;
    border-radius: 8px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.25), 0 3px 6px rgba(0, 0, 0, 0.22);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.25), 0 3px 6px rgba(0, 0, 0, 0.22);
}

.dashboard-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* The Modal (background) */
.modal {
        display: none;
        position: fixed;
        left: 0;
        width: 100vw;
        height: 100vh;
        min-height: 100vh;
        margin: 0 auto;
        background-color: rgba(0, 0, 0, 0.6);
        padding: 30px 10px;
        right: 0;
        bottom: 0;
        top: 0;
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Header */
.modal-header {
    padding: 2px 16px;
    background-color: #fff;
    color: black;
    text-align: center;
    border-radius: 10px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

/* Modal Body */
.modal-body {
    padding: 2px 30px;
    background-color: #f5f5f5;
    color: rgba(0, 0, 0, .7);
}

/* Modal Footer */
.modal-footer {
    padding: 2px 16px;
    background-color: #f5f5f5;
    color: #5cb85c;
    text-align: center;
    border-radius: 10px;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 10px;
}

/* Add Animation */
@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.track {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    background-image: url('../images/bg-2.jpg');
    background-position: center left;
    background-size:contain;
    /* background-repeat: no-repeat; */
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    z-index: 100;
    margin: 0;
    /* TOP BOX SHADOW */
    box-shadow: 0 0 0.6em rgba(0, 0, 0, 0.22);
}

.track .left {
    display: flex;
    flex: 1;
    flex-flow: row nowrap;
    justify-content: space-around;
}

.track .right {
    display: flex;
    flex: 1;
    flex-flow: row nowrap;
}

.track .right div:first-child {
    color: #000;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    margin-right: 5px;
    vertical-align: middle;
    line-height: 30px;
}

.track .right div:last-child {
    color: #000;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    margin-right: 5px;
    vertical-align: middle;
    line-height: 30px;
}

.score-div {
    margin: 10px 3px;
    padding: 5px;
    background: #f5f5f5;
}

div.score-div .header {
    background: #fff;
    padding: 5px;
    color: #000;
}

div.score-div .header h4 {
    margin: 0px;
}

table {
    width: 100%;
}

table thead tr th {
    text-align: left;
    background: #efefef;
    padding: 5px 2px;
    color: #000;
}

table thead tr th:first-child,
table thead tr th:last-child {
    text-align: left;
}

table thead tr th h6 {
    margin: 1px;
}

table tbody tr td {
    margin: 1px;
    font-size: 13px;
}

table tbody tr td {
    color: grey;
}

table tbody tr:first-child td {
    color: green;
    font-weight: bold;
}

table tbody tr td:first-child,
table tbody tr td:last-child {
    text-align: left;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

th,
td {
    text-align: left;
    padding: 6px;
}

thead tr th:first-child {
    text-align: left;
}

tbody tr td:first-child {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.how-to-jumbotron{
    background: #fff !important;
    color: #000;
}
ul.decorated-image{
    list-style-image: url('../images/svg/check.svg');
}
ul.decorated-image li{
    margin: 10px 0px;
    text-align: left;
}
.button {
    border: none;
    color: white;
    padding: 10px 6px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 5px;
}

.button1 {
    background-color: white;
    color: black;
    border: 2px solid #04AA6D;
}

.button1:hover {
    background-color: #04AA6D;
    color: white;
}

.button2 {
    background-color: white;
    color: black;
    border: 2px solid #008CBA;
}

.button2:hover {
    background-color: #008CBA;
    color: white;
}
.button3 {
    background-color: white;
    color: black;
    border: 2px solid #fdad0d;
}

.button3:hover {
    background-color: #fdad0d;
    color: white;
}
.--main-container h1{
    margin: 0px;

}
.dashboard-section h1{
    color: #E72930;
}
.highlighter{
    color: grey;
    font-size: 10px;
}
.feedback-div {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100vw - 32px);
    /* max-width: 100%; */
    height: 60px;
    z-index: 1;
    border-radius: 5px;
    margin: 1rem;
    display: none;
    padding: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    vertical-align: middle;
}

p.feedback-p {
    line-height: 14px;
    margin: 0px;
    display: table-cell;
    vertical-align: middle;
    padding: 10px;
}

.scrolling-wrapper {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
}

.scrolling-wrapper .card {
    display: inline-block;
}

.scrolling-wrapper-flexbox {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.scrolling-wrapper-flexbox .card {
    flex: 0 0 auto;
    margin-right: 3px;
}

.card-game {
    border: none;
    width: 60vw;
    height: 70vw;
    background-color: #efefef;
    position: relative;
    border-radius: 10px;
}
.card-game div{
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 15%;
    background-color: #efefef;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}
.card-game div a{
    background-color: #fa2858;
    border: none;
    font-weight: bold;
}

.scrolling-wrapper,
.scrolling-wrapper-flexbox {
    margin-bottom: 20px;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.scrolling-wrapper::-webkit-scrollbar,
.scrolling-wrapper-flexbox::-webkit-scrollbar {
    display: none;
}
.card-text{
    white-space: break-spaces;
    color: rgb(128, 128, 128);
    font-style: normal;
    font-weight: 100;
    font-size: 13px;
}