@CHARSET "UTF-8";
html {
    height: 100%;
}
body {
    height: 100%;
}

.page-wrap {
    min-height: 100%;
    /* equal to footer height */
    margin-bottom: -70px;
}
.page-wrap:after {
    content: "";
    display: block;
}
footer, .page-wrap:after {
    height: 70px;
}

.footer {
    padding-top: 10px;

}
.footer ul {
    list-style-type: none;
    margin: auto;
    text-align: center;
}
.footer ul li {
    display: inline;
    margin: 0px 15px 0 15px;
}
.footer ul li a {
    color: grey;
}
.footer ul li a:hover {
    color: #217967;
    text-decoration: underline;
}
.form-control:focus {
    border-color: #18bc9c;
}

.form-button {
    transition: all .3s ease-in-out;
    background-color: #18bc9c;
    color: #fff;
    border-color: #adadad;
}
.btn-radio {
    transition: all .3s ease-in-out;
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.has-error .btn-radio {
	 border-color: #a94442;
}
.has-error label {
     color: #a94442;
}
.form-button:hover, .btn-radio:hover {
	background-color: #1ba380;
    color: #fff;
    border-color: #18bc9c;
}
.btn-radio.active, .btn-radio.active.focus {
    background-color: #18bc9c;
    color: #fff;
    border-color: #18bc9c;
    outline-color: #adf9d6;
}

.form-button:focus, .form-button:active, .form-button:active:focus, .btn-radio:focus, .btn-radio:active, .btn-radio:active:focus {
    background-color: #adf9d6;
    color: #5b6671;
    border-color: #18bc9c;
    outline-color: #adf9d6;
}

.glyphicon-refresh-animate {
    -animation: spin .7s infinite linear;
    -webkit-animation: spin2 .7s infinite linear;
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}
}


.radio, .form-horizontal .radio {
   display: block;
    position: relative;
    padding-left: 15px;
    padding-top: 0;
    margin-top: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 1.8rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.radio-inline, .form-horizontal .radio-inline {
	padding-left: 35px;
    padding-top: 0;
	cursor: pointer;
	font-size: 1.8rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
/* Hide the browser's default radio button */
.radio input,
.radio-inline input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.radio .checksym,
.radio-inline .checksym  {
    position: absolute;
    top: 0;
    left: 0;
    height: 2.4rem;
    width: 2.4rem;
    background-color: #fff ;
    border-color:#c8c8c8;
    border-style:solid;
    border-width:3px;
     border-radius: 50%;
}
.radio:hover .checksym,
.radio-inline:hover .checksym {
    border-color:#18bc9c;
}


/* When the radio button is checked, add a blue background */
.radio input:checked ~ .checksym,
.radio-inline input:checked ~ .checksym {
    background-color: #fff;
    border-color:#18bc9c;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio .checksym:after,
.radio-inline .checksym:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio input:checked ~ .checksym:after,
.radio-inline input:checked ~ .checksym:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio .checksym:after,
.radio-inline .checksym:after {
    left: 3px;
    top: 3px;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: dimgrey;
    
 
}
.radio label {
    width: 100%;
}
.checkbox, .form-horizontal .checkbox {
    display: block;
    position: relative;
    padding-left: 15px;
    margin-top: 10px;
    margin-bottom: 18px;
    padding-right: 15px;
    padding-top: 0;
    cursor: pointer;
    font-size: 1.8rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkbox .checksym {
    position: absolute;
    top: 0;
    left: 0;
    height: 2.4rem; /* 36 px */
    width: 2.4rem; /* 36 px */
    background-color: #fff ;
    border-color:#c8c8c8;
    border-style:solid;
    border-width:3px;
}

.checkbox:hover .checksym {
    border-color:#18bc9c;
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checksym {
    background-color: #fff;
    border-color: #18bc9c;
}

.checkbox input:focus ~ .checksym:before {
	border-color: rgba(24, 188, 156, 0.2);
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkbox .checksym:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checksym:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox .checksym:after {
    left: 7px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid ;
    border-color: dimgrey;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox label {
    width: 100%;
}

.choice-help-img {
    cursor: pointer;
    vertical-align: text-bottom;
    margin-left: 20px;
    margin-top: 5px;
}

.alert-with-icon {
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display:flex;
    align-items: center;
}

.alert-with-icon .icon {
    padding-right: 1.2em;
}

@media (max-width: 767px) {
    .footer {
        font-size: 0.8em;
    }
    .footer ul {
        padding: 0;
    }
    .footer ul li {
        margin: 0 5px 0 0;
    }

}