﻿

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*font-size: larger;*/
    background-image: url("background.jpg" ) ;
   /* background-color: rgb(223,22,52);*/
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    align-items: center;
    text-align: center;
    /*background-size: 100%;*/
}
.textboxx{
    width:150px;
}
.panel {
    width: 85%;
    /*opacity : .5;*/
    max-width: 950px;
    display: inline-block;
    text-align: left;
    background-color: #b4c9d8;
    /*background-color: #fae6e2;*/
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    margin-left: 30px;
    margin-top: 50px;
}
.radioButtonList input[type="radio"] {
    width: auto;
    float: left;
}

.radioButtonList label {
    width: auto;
    display: inline;
    float: left;
    font-size: 0.7rem;
    color: #0367B2 !important;
    font-style: italic;
}
.responsive-image {
    width: 100%;
    height: auto;
    opacity:60;

}
@keyframes click-wave {
    0% {
        height: 40px;
        width: 40px;
        opacity: 0.35;
        position: relative;
    }

    100% {
        height: 200px;
        width: 200px;
        margin-left: -80px;
        margin-top: -80px;
        opacity: 0;
    }
}


/* Customize the label (the container) */
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    /*font-size: 22px;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .container input {
        position: absolute;
        opacity: 0;
    }

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
.btn {
    background: red;
    background-image: -webkit-linear-gradient(to bottom right, red, black);
    background-image: -moz-linear-gradient(to bottom right, red, black);
    background-image: -ms-linear-gradient(to bottom right, red, black);
    background-image: -o-linear-gradient(to bottom right, red, black);
    background-image: linear-gradient(to bottom right, red, black);
    -webkit-border-radius: 28;
    -moz-border-radius: 28;
    border-radius: 28px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*font-size: larger;*/
    color: #ffffff;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    font-weight: bold;
    align-items: center
}

    .btn:hover {
        background: #3cb0fd;
        background-image: -webkit-linear-gradient(top, #f0ca6e, #984807);
        background-image: -moz-linear-gradient(top, #f0ca6e, #984807);
        background-image: -ms-linear-gradient(top, #f0ca6e, #984807);
        background-image: -o-linear-gradient(top, #f0ca6e, #984807);
        background-image: linear-gradient(to bottom, #f0ca6e, #984807);
        text-decoration: none;
    }