/*----------------------------------------*/
/*             DESKTOP STYLES             */
/*----------------------------------------*/


/*   GLOBAL STYLES    */

.pageWrapper {
    width: 100%;
    padding: 0;
    /*background-color: #FDFBD9;*/
    border-radius: 0.6em;
    margin: 0px auto;
    text-align: center;
}

.accord {
    width: 95%;
    max-width: 600px;
    padding: 10px 10px 20px;
    margin: 0px auto;
}

.headline {
    color: #0063BE;
    font-weight: bold;
    font-size: 30px;
    line-height: 34px;
    margin: 0px auto;
}

.buttonBlock {
    margin: 20px auto 45px;
    width: 90%;
    border: 2px dotted #0063BE;
    background-color: #E5F3FF;
    padding: 1.25rem;
}

.LWSButton {
    background-color: #0063BE;
    border-radius: 2px;
    color: #ffffff;
    display: inline-block;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 1.563rem;
    line-height: 1.563rem;
    padding: 0.625rem 1.563rem;
    text-decoration: none;
}

.LWSButton:hover {
    background-color: #004C94;
    color: #ffffff;
    transition: all 0.15s linear;
}

.pText {
    text-align: center;
    font-family: Helvetica, Arial, sans-serif;
    margin: 0px auto;
    color: #404040;
    font-size: 18px;
    line-height: 24px;
}
  
.pText > .LWSButton {
    width: 50%;
}

.divider {
    border: none;
    width: 70%;
    border-top: 2px dotted #0063BE;
    margin: 0px auto;
}

.flex-container {
    display: flex;
    flex-direction: row;
    width: 95%;
    margin: 20px auto;
}


/*   ACCORDION   */

.accordionMainTitle {
    border-radius: 2px;
    padding: 20px 25px;
    font-family: helvetica, arial, sans-serif;
    font-size: 30px;
    line-height: 32px;
    font-weight: bold;
    margin-top: 10px;
}

#accordion {
    margin: 10px auto 10px;
    padding: 0 10px 25px;
    background: #ffffff;
    border: 2px dotted #443eee;
    display: block;
    width: 95%;
}

.panel {
    padding: 5px 20px;
    width: 95%;
    margin: 0px auto;
}

.collapsible {
    background-color: #e5e5ff;
    color: #003c7f;
    cursor: pointer;
    padding: 12px 20px;
    width: 100%;
    border: none;
    text-align: center;
    outline: none;
    font-size: 20px;
    font-weight: bold;
}

/* active accordion button */
.active,
.collapsible:hover {
    background-color: #635eed;
    color: #ffffff;
}

.collapsible:after {
    content: "\02795";
    /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #ffffff;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796";
    /* Unicode character for "minus" sign (-) */
}

/* Inner accordion content (hidden by default) */
.content {
    padding: 0;
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}


/*  SPEECH BUBBLE STYLES  */
.bubbleWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 20px;
    font-family: helvetica, arial, sans-serif;
}

.bubbleHeader {
    font-size: 24px;
    line-height: 28px;
    margin: 5px auto 20px;
}

.bubble {
    width: 96%;
    color: #0063BE;
    padding: 10px 20px;
    background-color: #ffffff;
    box-shadow: 1px 1px 0 #ddd, 2px 2px 0 #bbb;
    border-radius: 3px;
}

.bubbleText {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0px auto;
    color: #404040;
    font-size: 16px;
    line-height: 20px;
    text-align: left;
}


/*   PIE CHART STYLES    */

@keyframes bake-pie {
    from {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }
}

.wrapper {
    width: 100%;
    padding: 1em 0 .01em;
    background-color: #FDFBD9;
    border-radius: 0.6em;
    margin: 0 auto 15px;
    text-align: center;
}

.questionStyle {
    font-size: 22px;
    line-height: 26px;
    color: #0063BE;
    font-weight: bold;
}

.pie-chart {
    font-family: Helvetica, Arial, sans-serif;
}

.pie-chart--wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0px auto 20px;
    text-align: center;
}

.pie-chart__pie,
.pie-chart__legend {
    display: inline-block;
    vertical-align: top;
}

.pie-chart__pie {
    position: relative;
    height: 200px;
    width: 200px;
    margin: 10px auto 35px;
}

.pie-chart__pie::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    width: 100px;
    height: 100px;
    background: #eee;
    border-radius: 50%;
    top: 50px;
    left: 50px;
}

.pie-chart__pie::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 3px 4px rgba(0, 0, 0, 0.1);
    margin: 220px auto;
}

.slice {
    position: absolute;
    width: 200px;
    height: 200px;
    clip: rect(0px, 200px, 200px, 100px);
    animation: bake-pie 1s;
}

.slice span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    clip: rect(0px, 200px, 200px, 100px);
}

.pie-chart__legend {
    display: block;
    list-style-type: none;
    padding: 0;
    margin: 10px auto 0;
    background: #fff;
    padding: 0.75em 0.75em 0.05em;
    font-size: 13px;
    box-shadow: 1px 1px 0 #ddd, 2px 2px 0 #bbb;
    text-align: left;
    width: 98%;
    padding: 15px 10px;
}

.pie-chart__legend li {
    height: 1.25em;
    padding-left: 0.5em;
    border-left: 1.25em solid black;
    line-height: 20px;
    font-size: 17px;
    font-weight: bold;
    width: 100%;
}

.pie-chart__legend li:last-child {
    margin-top: 20px !important;
    display: inline-block !important;
    line-height: 18px !important;
}

.pie-chart__legend em {
    font-style: normal;
    display: inline-block;
    width: 75%;
}

.pie-chart__legend span {
    float: right;
}

.pie-chart__legend span::after {
    content: '%';
}

.pie-charts {
    display: flex;
    flex-direction: row;
}



/*   FORM STYLES    */
  
.row {
    padding: 5px 20px 10px;
}

.col-100 {
    margin: 0px auto 5px;
    display: block;
    float: left;
    width: 100%;
}

.formBorder {
    border: 2px solid #DEDEC4;
    background-color: #FDFDF7;
    padding: 10px 15px;
    border-radius: 2px;
    width: 95%;
    margin: 0px auto 50px;
    display: block;
}

.formTitle {
    font-size: 20px;
    line-height: 24px;
    color: #0063BE;
    font-family: helvetica, arial, sans-serif;
    font-weight: bold;
    text-align: center;
    border: 2px dotted #0063BE;
    background-color: #E5F3FF;
    padding: 10px 30px;
}

.formLabel {
    font-size: 18px;
    line-height: 24px;
    font-family: helvetica, arial, sans-serif;
    color: #0063BE;
    font-weight: bold;
    padding: 10px 0;
    margin: 0;
}

input::placeholder,
textarea::placeholder {
    font-size: 14px;
    color: #777777;
    padding: 3px;
}
  
.responseForm {
    width: 95%;
    margin: 0px auto;
}

#playerResponse {
    width: 95%;
    padding: 5px 3px;
    font-family: helvetica, arial, sans-serif;
    resize: vertical;
    margin: 10px auto 0;
    display: inline-block;
}

.charNum {
    padding-left: 10px;  
}

.charCount {
    font-size: 12px;
    line-height: 12px;
    color: #624ac9;
    font-weight: bold;
}

.submitBtn {
    background-color: #0063BE;
    border-radius: 2px;
    color: #ffffff;
    display: inline-block;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1.563rem;
    margin: 15px auto;
    padding: 0.625rem 1.563rem;
    text-decoration: none;
    border: 0;
}

.submitBtn:hover {
    background-color: #004C94;
    color: #ffffff;
    transition: all 0.15s linear;
}

.responseContainer {
    margin: 40px auto 0;
}
  
.responseConfirmationWrapper {
    padding: 20px 10px 25px;
}
  
.responseConfirmation {
    padding: 15px 30px 25px;
}

.responseConfirmationMsg {
    border: 2px solid #DEDEC4;
    background-color: #FDFDF7;
    padding: 35px 25px;
    border-radius: 2px;
    width: 100%;
    margin: 0px auto 20px;
    display: block;
}



/*-----------------------------------------*/
/*              MOBILE STYLES              */
/*-----------------------------------------*/

@media (max-width: 599px) {
    /* GENERAL STYLES */
    .confirmationWrapper {
        width: 100%;
        max-width: 599px;
        margin: 0px auto;
    }

    
    /*   PIE CHART STYLES    */
    .pie-charts {
        flex-direction: column;
    }
    
    .choiceDescription {
        font-size: 14px;
        line-height: 18px;
        display: block;
        float: left;
    }
    
    .choiceValue {
        font-size: 14px;
        line-height: 18px;
    }
    
    .pie-chart__legend li {
        height: 1em !important;
        border-left: 1em solid black;
    }
    
    .pie-chart__legend {
        width: 95% !important;
    }

    
    /*   ACCORDION STYLES   */
    #accordion {
        margin: 0 !important;
        padding: 0 !important;
        width: 85% !important;
        max-width: 480px !important;
        display: block;
    }

    .panel {
        width: 100% !important;
        max-width: 450px !important;
    }

    /*   FORM STYLES    */
    .wrapper {
        width: 100%;
        max-width: 595px;
        padding: .6em;
        background-color: #FDFBD9;
        border-radius: 0.6em;
        margin: 30px auto 40px;
        text-align: center;
    }
    
    .responseContainer {
        margin: 40px auto 0;
        width: 100%;
    }
    
    .col-100 {
        padding-right: 5px;
        margin: 0;
        width: 100%;
    }
    
    .formBorder {
        padding: 10px 0;
        width: 100%;
        max-width: 590px;
        margin: 0px auto 30px;
    }
}