﻿body, table tr td, textarea {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    color: #2a2c2b;
    font-size: 14px;
    line-height: 20px;
}

textarea, select {
    background: #edf1f3;
    border-color: #d2dee8;
    border-radius: 5px;
}

select {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 14px;
    margin: 10px 0;
    padding: 3px;
    width: 100%;
}

table {
    width: 100%;
}

    table tr td:first-child {
        font-weight: 600;
        width:20%;
    }

textarea {
    line-height: 18px;
    width: 100%;
    max-width: 100%;
    height: 200px;
}

.btn {
    /*font: normal normal normal 14px/1 FontAwesome;*/
    display: block;
    color: #ffffff;
    -webkit-appearance: none;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-style: normal;
    font-size: 15px;
    line-height: 1.333;
    font-weight: 500;
    text-decoration: none !important;
    text-align: center;
    cursor: pointer;
    padding: 8px 12px 8px 35px;
    vertical-align: middle;
    background-color: #009ee2;
    border: none;
    border-bottom: 2px solid #0180af;
    border-radius: 4px;
    -moz-transition: background-color ease 0.25s;
    -o-transition: background-color ease 0.25s;
    -webkit-transition: background-color ease 0.25s;
    transition: background-color ease 0.25s;
    position: relative;
    margin-bottom: 10px;
}

    .btn:hover {
        background-color: #0180af;
    }
/*Radiobutton*/
input[type='radio'] + label {
    margin: 0 15px 0 0;
    font-weight: 600;
}


input[type=radio]:not(old) {
    display: none;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
}

    input[type=radio]:not(old) + label {
        display: inline-block;
        cursor: pointer;
        position: relative;
        padding-left: 26px;
        line-height: 18px;
        margin-bottom: 6px;
    }

        input[type=radio]:not(old) + label:before {
            content: "";
            display: inline-block;
            width: 18px;
            height: 17px;
            margin-right: 10px;
            position: absolute;
            left: 0;
            bottom: 1px;
            background: url('../images/radiobutton.png') no-repeat;
        }

    input[type=radio]:not(old):checked + label:before {
        background-position: bottom;
    }
