﻿/* Style the tab */
.tab {
    float: left;
    width: 30%;
}

/* Style the buttons that are used to open the tab content */
    .tab button {
        display: block;
        color: black;
        background: #ffcd53;
        padding: 22px 16px;
        font-size: 18px;
        width: 100%;
        margin-left: 10px;
        outline: none;
        text-align: center;
        cursor: pointer;
        transition: 0.3s;
        font-weight: bold;
        border-radius: 5px;
        box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
    }

   /* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

  /* Create an active/current "tab button" class */
.tab button.active {
      background-color: #f3ef9e;

  }

  /* cheat content style */
#cheat-content{
    float:right;
    width:65%;
    margin-right: 2%;

}
.tabcontent{
    border-bottom: 1px dotted grey;
    margin-bottom: 100px;
}
.textBox-right{
    background-color: #a4c7a7;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    float: right;
    width: 20%;
    padding: 5px;
}
.para-note{
    font-style: italic;
    font-weight: bold;
    margin-left: 70px;
}
h2{
    padding:20px;
    /* margin:20px; */
    background-color: rgb(151, 221, 151);
    text-align: center;
}

button{
    color:blue;
}
.cheat-para{
    margin-left: 70px;
    background-color: #DCF2DB;
    padding: 10px 5px;
}

.downloadfile{
    font-size: 18px;
}
.downloadfile a{
    color: blue;
    text-decoration-line: underline;
}
.unlinkedBtn{
    color: white !important;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    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 */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 40%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

.modal-header {
    padding: 2px 2px;
    background-color: #5cb85c;
    color: white;
}

.modal-body {
    padding: 2px 16px;
    min-height:100px;
}
.modal-body ol{
    padding-left: 30px;
}