﻿.ctable {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: rgba(255, 255, 255, 0.5);
	padding:10px 10px;
}

input[type=text] {
    width: 100%;
    padding: 10px 10px;
    margin:3px 0;
    box-sizing: border-box;
    border-radius: 10px
}
input[type=tel] {
    width: 100%;
    padding: 10px 10px;
    margin:3px 0;
    box-sizing: border-box;
    border-radius: 10px
}
textarea {
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 10px;
    background-color: #f8f8f8;
    resize: none;
}

.btn {
    background-color: yellow;
    border: none;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
}

.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}
.btn-success{background-repeat: repeat-x;
	border-color: yellow;
	background-image: linear-gradient(to bottom,yellow 0,grey 100%);
}
.modal-footer .btn-block+.btn-block{margin-left:0}