/* ===============================================
			Default Margin values
================================================*/

.mt1 {
    margin-top: 1px;
}

.mt2 {
    margin-top: 3px;
}

.mt3 {
    margin-top: 3px;
}

.mt5 {
    margin-top: 5px;
}

.mt6 {
    margin-top: 6px;
}

.mt7 {
    margin-top: 7px;
}

.mt8 {
    margin-top: 8px;
}

.mt10 {
    margin-top: 10px;
}

.mt12 {
    margin-top: 12px;
}

.mt20 {
    margin-top: 20px;
}

.mr1 {
    margin-right: 1px;
}

.mb3 {
    margin-bottom: 3px;
}

.mr2 {
    margin-right: 2px;
}

.mr3 {
    margin-right: 3px;
}

.mr5 {
    margin-right: 5px;
}

.mr10 {
    margin-right: 10px;
}

.mr20 {
    margin-right: 20px;
}

.mr30 {
    margin-right: 30px;
}

.mr50 {
    margin-right: 50px;
}

.mr150 {
    margin-right: 150px;
}

.ml5 {
    margin-left: 5px;
}

.ml10 {
    margin-left: 10px;
}

.ml15 {
    margin-left: 15px;
}

.ml20 {
    margin-left: 20px;
}

.ml30 {
    margin-left: 30px;
}

.ml35 {
    margin-left: 35px;
}

.ml40 {
    margin-left: 40px;
}

.ml50 {
    margin-left: 50px;
}

.ml100 {
    margin-left: 100px;
}

.ml150 {
    margin-left: 150px;
}

.pad1 {
    padding: 1px;
}

.pad2 {
    padding: 2px;
}

.pad5 {
    padding: 5px;
}

.pad10 {
    padding: 10px;
}

.padright1 {
    padding-right: 1px;
}

.padleft5 {
    padding-left: 5px;
}
.padleft10 {
    padding-left: 10px;
}

/* ===============================================
			Default Widths for Inputs
================================================*/

.w25 {
    width: 25%
}
.w45 {
    width: 45%;
}
.w50 {
    width: 50%;
}

.w90 {
    width: 90%;
}

.w95 {
    width: 95%;
}

.w96 {
    width: 96%;
}

.w97 {
    width: 97%;
}

.w98 {
    width: 98%;
}

.w99 {
    width: 99%;
}

.w100 {
    width: 100%;
}


/* ===============================================
			Default Font Styles
================================================*/
/*FONT SIZES*/
.font8 {
    font-size: 8px;
}

.font10 {
    font-size: 10px;
}

.font12 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}

.font16 {
    font-size: 16px;
}

.font18 {
    font-size: 18px;
}

.font20 {
    font-size: 20px;
}

.font22 {
    font-size: 22px;
}

.font24 {
    font-size: 24px;
}

/*BOLD, ITALIC, UNDERLINE*/
.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
}


/*Center anything*/

.center {
    text-align: center;
    text-align-last: center;
}

/*Align Left & Right*/
.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

/*Default Borders*/

.full-border {
    border: solid black 1px;
}

.all-but-top {
    border-bottom: solid black 1px;
    border-right: solid black 1px;
    border-left: solid black 1px;
}

.top-border {
    border-top: solid black 1px;
}

.left-border {
    border-left: solid black 1px;
}

.right-border {
    border-right: solid black 1px;
}

.bobo {
    border: none;
    border-bottom: solid black 1px;
}

.nob {
    border: none;
}

/* No Arrow On End Of Selects */

.no-arrow {
    text-align: center;
    text-align-last: center;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    text-indent: 0.11px;
    text-overflow: '';
    transition: all 1s;
}

/*Align Content in cell vertically*/
.vertical-align {
    align-self: center;
}

/* Transition for one second on these elements */

input,
select,
textarea {
    font-family: quicksand;
    font-size: 16px;
    color: blue;
    
    font-weight: bold;
    transition: all 1s;
    outline: none;
    box-sizing: border-box;
}


/* Hover Statements */

input:hover,
input:focus,
select:hover,
select:focus,
textarea:hover,
textarea:focus {
    cursor: pointer;
    background: rgb(109, 60, 94);
    color: white;
    box-shadow: 0px 0px 30px rgb(109, 60, 94);
}





/*START OF PAGE CODE*/
body {
    width: 850px;
    margin: auto;
    font-family: lato;
}

.thank-you {
    margin-top: 10px;
    line-height: 150%;
}

.lightgrey {
    background: lightgrey;
}

.page-title {
    font-size: 20px;
    letter-spacing: 2px;
    color: rgb(109,60,94);
    padding: 5px;
}

.choose-me, .choose-me2 {
    -webkit-user-select: none;
    /* Chrome/Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+ */
    /* Rules below not implemented in browsers yet */
    -o-user-select: none;
    user-select: none;
    border: white 2px solid;
}

.choose-me:hover, .choose-me:focus, .choose-me2:hover, .choose-me2:focus {
    cursor: pointer;
    background: ghostwhite;
    color: indianred;
    border: indianred 2px solid;
}

.choose-me {
    cursor: pointer;
    padding: 2px 4px 2px 4px;
    border: solid white 2px;
}

.choose-me2 {
      cursor: pointer;
    padding: 2px 4px 2px 4px;
    border: solid lightgrey 2px;
}

.circle {
    font-weight: 600;
    border-radius: 40%;
    border: solid black 2px;
}

.med-list {
    resize: none;
    background: lightgrey;
}

.short-input {
    width: 100px;
}

input[type="checkbox"]:hover + label {
    cursor: pointer;
}

.regular-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.regular-checkbox+label:before {
    background: lightgrey;
    border-bottom: solid 2px #000;
    content: "";
    display: inline-block;
    height: 15px;
    width: 15px;
    line-height: 8px;
    margin: -5px 8px 0 0;
    /* This moves the box up to sit on the same line as label, moves the label 8px to the right */
    vertical-align: middle;
    /*  you can change the margins last number to give padding between each checkbox */
    text-align: center;
    /*  This centers the check mark */
}

.regular-checkbox:checked+label:before {
    content: "\2713";
    /* This is the html number for a check mark */
    font-size: 27px;
    color: blue;
    font-weight: bold;
    transition: all 1s;
}

.regular-checkbox:checked+label {
    color: blue;
    font-weight: bold;
}

.regular-checkbox+label:hover {
    color: red;
}

fieldset {
    box-sizing: border-box;
}

#pregnancy-illness {
    overflow: hidden;
    resize: none;
}

.system-heading {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.system-list {
    
    font-size: 11px;
    text-transform: capitalize;
}

.list-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.list-checkbox+label:before {
    background: white;
    border-bottom: solid 2px #000;
    content: "";
    display: inline-block;
    height: 10px;
    width: 10px;
    line-height: 6px;
    margin: -5px 8px 0 0;
    /* This moves the box up to sit on the same line as label, moves the label 8px to the right */
    vertical-align: middle;
    /*  you can change the margins last number to give padding between each checkbox */
    text-align: center;
    /*  This centers the check mark */
}

.list-checkbox:checked+label:before {
    content: "\2713";
    /* This is the html number for a check mark */
    font-size: 18px;
    color: blue;
    font-weight: bold;
    transition: all 1s;
}

.list-checkbox:checked+label {
    color: blue;
    font-weight: 600;
}

.list-checkbox+label:hover {
    color: red;
}









.print-form {
    margin-top: 25px;
}

@media print {
    ::-webkit-input-placeholder {
        /* WebKit browsers */
        color: transparent;
    }
     :-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: transparent;
    }
     ::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: transparent;
    }
     :-ms-input-placeholder {
        /* Internet Explorer 10+ */
        color: transparent;
    }
    .no-print {
        display: none;
    }
    body {
        background-color: white;
    }
    input,
    select,
    textarea
     {
       
        color: black !important;
    }
    #other-grey {
        background: lightgrey !important;
    }
    input[type="checkbox"]:checked+label:before {
        color: black !important;
        
        
    }
    input[type="checkbox"]+label:before {
        
    }
    .regular-checkbox:checked+label, .list-checkbox:checked+label {
        font-weight: bold;
        color: black !important;
    }
}