﻿/*************************************************************
  Copyright (c) Microsoft Corporation.  All rights reserved.  
*************************************************************/

.QAcontainer {
    margin-bottom: 10px;
}

.intro-col {
    float: left;
    width: 30%;
    margin: 9px 10px 10px 0;
}

.qcol,
.qcol-sm {
    color: #373a36; /*Customizable- Font color of Q&A container */
    background-color: #d6d2c4;
    font-size: 12px;
    float: left;
    border: 1px solid #d6d2c4;
    padding: 10px;
}

.qcol {
     width: 718px;
}

.qcol-sm {
    width: 60%;
}

.QAPanel {
    overflow: visible;
    height: 100%;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

.QAGroup {
    margin-bottom: 15px;
}

.question {
    margin-bottom: 5px;
    min-width: 200px;
    width: 100%;
    font-family: "Arial", "Verdana", "Sans-Serif", "Helvetica";
    font-size: 18px;
}

input.answerTextbox {
    min-width: 200px;
    width: 100%;
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.noIME {
    -ms-ime-mode: disabled;
    ime-mode: disabled;
}

.questionValidationLabel {
    color: #c12625;
}

.registrationGateContainerDiv {
    margin-bottom: 10px;
    overflow: hidden;
}

.labelPrivacyNotice {
    clear: both;
    color: #595959;
    font-size: 10px;
    margin-left: 32%;
}

.QAGate-spacer {
    width: 26%;
    float: left;
}

    .QAGate-spacer ul {
        margin: 0;
        font-size: 12px;
        list-style-type: none;
    }

        .QAGate-spacer ul li {
            margin-bottom: 5px;
        }

/****************
Media Queries
*****************/

/* Smartphones ----------- */
@media only screen and (max-width: 480px) {
    .mobile-hidden {
        display: none;
    }

    .QAPanel {
        overflow: visible;
        height: 100%;
    }

    .intro-col {
        width: 100%;
        margin-right: 0;
    }

    .qcol {
        width: 91%;
    }

    .QAGate-spacer {
        width: 0%;
        float: left;
    }

    .labelPrivacyNotice {
        margin-left: 1%;
    }

    .question {
        font-size: 14px;
    }

    input.answerTextbox {
        font-size: 14px;
    }

    .registrationGateContainerDiv {
        min-height: 200px;
    }
}

/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
    .QAPanel {
        overflow: visible;
        height: 100%;
    }
}

/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
    .QAPanel {
        overflow: visible;
        height: 100%;
    }
}
