﻿
.main {
    font-family: "Open Sans", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.defaultText {
    /*font-size: 1.2em;*/
    font-size: 17px;
    color: #777;
    line-height: 24px;
    /*margin: 0 0 20px;*/
}

button {
    display: inline-block;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    width: 219px;
    padding: 10px 16px;
    border-radius: 6px;
    height: 40px;
    text-decoration: none;
    background-color: #0088CC;
    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
    min-width: 80px;
}

    button:hover {
        background-color: #0099E6;
    }


h3 {
    display: block;
    font-size: 27.2px;
    font-weight: 300;
    color: #1d2127;
    letter-spacing: normal;
    text-transform: none;
    line-height: 24px;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.linkBtn {
    display: inline-block;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    width: 185px;
    padding: 10px 16px;
    border-radius: 6px;
    height: 18px;
    text-decoration: none;
    background-color: #0088CC;
    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
}

    .linkBtn:hover {
        background-color: #0092DF;
    }


input {
    width: 300px;
    height: 20px;
    margin-top: 20px;
    font-size: 12px;
    border-radius: 3px;
    border-style: solid;
    border-color: rgb(201, 201, 201);
    border-width: 1px;
    font-weight: 400;
    line-height: 22px;
    color: rgb(51, 51, 51);
    padding: 8px;
}

    input:focus {
        border-width: 1px;
        border-color: #5CA6FA;
        text-shadow: none;
    }



.buttonSmall {
    width: 70px;
    margin-bottom: 20px;
    height: 30px;
    line-height: 9px;
    width: 75px;
    margin-bottom: 20px;
    height: 30px;
    line-height: 9px;
}


.buttonMedium {
    width: 132px;
    margin-bottom: 20px;
    height: 32px;
    line-height: 10px;
    margin: 5px;
}


.flex-container {
    display: flex;
    flex-wrap: wrap;
    width: 440px;
    text-align: left;
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
}

    .flex-container > div {
        width: 200px;
        /*border: 1px solid gray;*/
        line-height: 20px;
        padding: 10px;
    }


.flex-container2 {
    display: flex;
    flex-wrap: wrap;
    width: 800px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
}

    .flex-container2 > div {
        width: 200px;
        /*border: 1px solid gray;*/
        line-height: 20px;
    }


.gridFirstCol {
    width: 200px !important;
    text-align: right;
}


.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}
    .active, .accordion:hover {
        background-color: #ccc;
    }

.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
    width: 650px;
    border: 1px solid lightgray;
    border-radius: 6px;
    margin-left:auto;
    margin-right:auto;
}
