@charset "UTF-8";
/* CSS Document */

/* Daily Free Info Styles */
#dailyFreeInfo {
    width: 98%;
    margin: 60px auto;
    padding: 0;
    box-sizing: border-box;
}   
    
.topicsImage img{
    width: 600px;
}

.cartTable {
    width: 100%;
}
    
.cartTable thead tr {
    background-color: #0099FF;
    color: #FFF;
    text-align: left;
    font-size: 1.2em;
    font-family: 'Comfortaa', serif;
}

.cartTable thead tr .tableHead {
    background-color: #0099FF;
    color: #FFF;
    text-align: center;
}
    
.cartTable th,
.cartTable td {
    padding: 12px 15px;
}
    
.cartTable tbody tr {
    border-bottom: 1px solid #dddddd;
}

.cartTable tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.cartTable tbody tr:last-of-type {
    border-bottom: 2px solid #dddddd;
}  

.answerWrap {
    flex: 0 0 auto;
    width: 95%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px;    
}
    
.question {
    font-size: 1.25rem;
    font-weight: 600;
}
    
.answerChoice {
    display: block;
    min-width: 80%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: left;
    font-size: 1rem;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--text);
    cursor: pointer;
}

.answerChoice:hover {
    background: #eef6ff;
    border-color: var(--primary);
}
    
.responseBox {
    min-width: 70%;
    margin: 5px auto;
    border: 1px solid #CE080B;
    border-radius: 10px;
    background-color: #ECD5D5;
    padding: 10px;
}

#showAns1-div, 
#showAns2-div, 
#showAns3-div, 
#showAns4-div, 
#showAns5-div {
    display: none;
    width: 70%;
    padding: 25px;
    margin-left: auto;
    margin-right: auto;
    border: .5px solid #000;
    background-color: #F9F9F9;
    box-shadow: 3px 3px 5px #424A5A;
}

#showQuestion2,
#showQuestion3,
#showQuestion4,
#showQuestion5,
#showQuestion6 {
    display: none;
}
    
#buttonDemoWrap {
    min-height: 500px;
    margin: 10px;
    padding: 20px;
}
    
.buttonStyleClear {
    cursor: pointer;
}
/* End Daily Topics */


@media screen and (max-width: 768px) {  
    
#dailyFreeInfo {
    width: 100%;
    margin: 60px 0;
    padding: 0;
} 
    
.topicsImage img{
    width: 400px;
}

}

@media screen and (max-width: 650px) {  
    
#showAns1-div, 
#showAns2-div, 
#showAns3-div, 
#showAns4-div, 
#showAns5-div {
    width: 90%;
}
    
.topicsImage img{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
    
}

@media screen and (max-width: 500px) {  
    
#buttonDemoWrap, .dailyQuestions {
    margin: 0;
    padding: 0;
}
    
}
