h2 {
    color:#008dd2;
    font-size: 27px;
    margin-top: 10px;
    margin-bottom: 6px;
}
/* reducing h2 size on mobile resolutions */
@media screen and (max-width: 767px) {
    h2 {
        font-size: 17px;
    }
    p {
        font-size: 14px;
    }
}
.btn {
    box-shadow: 0px 3px 2px -1px rgba(0,0,0,.4);
    outline: none;
    text-transform: uppercase;
}
.btn:hover {
    box-shadow: 0px 3px 2px -1px rgba(0,0,0,.3);
    transition: 0.24s;
}
.btn:active {
    box-shadow: 0px 2px 2px -1px rgba(0,0,0,.3);
    margin-bottom: -1px;
    margin-top: 1px;
    transition: 0.12s;
    outline: 0;
}
.input-group .btn:active, /* disable for buttons within input groups */
.btn-group .btn:active { /* disable for buttons within btn groups */
    margin-bottom: 0px;
    margin-top: 0px;
}
.btn:active:focus, .btn:focus {
    outline: none;
}
.btn.btn-default {
    background: linear-gradient(to bottom, #eee 0%, #fff 100%);
}
.btn.btn-primary {
    background: linear-gradient(to bottom, #008dd2 0%, #00aeef 100%);
}
.btn.btn-success {
    background: linear-gradient(to bottom, #47cf47 0%, #4cdb4c 100%);
}
.tooltip > .tooltip-inner {
    background-color: white;
    color:#443e32;
    border: 1px solid #999;
    border-radius: 0;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.tooltip.top > .tooltip-arrow {
    border-top-color: #999;
}
.form-control::placeholder{
    color: #6c6c6c;
    font-style: normal;
    font-weight: normal;    
}
.form-control::-webkit-input-placeholder {
    color: #6c6c6c;
    font-style: normal;
    font-weight: normal;    
}
.form-control:-moz-placeholder {
    color: #6c6c6c;
    font-style: normal;
    font-weight: normal;    
}
.form-control::-moz-placeholder {
    color: #6c6c6c;
    font-style: normal;
    font-weight: normal;    
}
.form-control:-ms-input-placeholder {
    color: #6c6c6c;
    font-style: normal;
    font-weight: normal;    
}
.form-control {
    border: 1px solid #b6b6b6;
    background: #ffffff;
    padding: 10px;
    font-weight: normal;
    color: #000;
}
:not(.input-group) > .form-control {
    border-radius: 0;
}
select.form-control {
    padding: 0 5px;
}
input[type="text"],
input[type="email"],
input[type="password"],
select{
    box-sizing: border-box;
    -webkit-appearance: none;
}
input[name="fullname"], 
input[name="name"], 
input[name="address_1"],
input[name="address_2"], 
input[name="postcode"], 
input[name="city"] {
    text-transform: capitalize;
}
input:focus,
select:focus{
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}
input.large-field,
select.large-field{
    width: 100%;
}
input[type="text"].large-field,
input[type="password"].large-field,
select.large-field {
    width: 100%;
}
.has-error .form-control {
    background-color: #f8acac;
}
.carousel-control {
    top: 25%;
    bottom: 25%;
}
.modal-content {
    border-radius: 0;
}
@media (max-width: 767px) {
    .modal {
        margin-top: 50px;
    }
}
