/* table.form-table
{
	width:100%;
	background-color:white;
	border-collapse:collapse;
	font-size:100%;
	font-weight:normal;
	line-height:160%;
}

table.form-table th, table.form-table td
{
	border:1px solid #ADC3D5;
	padding: 5px 5px;
	vertical-align:top;
}

table.form-table th
{
	background-image:url(images/table_head.gif);
	background-repeat:repeat-x;
	text-align: left;
	color:#25639A;
}


table.form-table td
{
	padding: 15px 5px;
} */

.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(images/icon_warn.gif);
}


.form-box
{
	background: #fff;
    -webkit-box-shadow: 0px 9px 30px 0px rgba(34, 35, 37, .15);
    box-shadow: 0px 9px 30px 0px rgba(34, 35, 37, .15);
    width: 378px;
    height: auto;
    padding: 32px;
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
	border-radius: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    gap: 24px;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hystmodal__close.form-box__close {
    top: 20px;
    right: 15px;
}

.form-box .active
{
	color:green;
}

.form-box .disable
{
	color:red;
}

.form-box label:not([class="radio-hidden"])
{
	line-height:30px;
}

.form-box form
{
	margin:0;
}

.starrequired 
{
    color:red;
}
.vote-reply-field-captcha-label {
    margin-bottom:6px;}
.vote-vote-footer {
    margin-top:6px;}
.vote-reply-field-captcha-image {
    margin:6px 0;}

.radio-hidden {
    opacity: 0;
}

.form-box h2 {
    font-size: 20px;
    margin-bottom: 25px;
}

.form-box__error {margin: 10px 0;}
.form-box__error .errortext {
    font-size: 12px;
    line-height: 1;
    color: var(--theme-color-danger);
    transform: translateY(100%);
}
.form-box__buttons {margin-top: 30px;}

.form-box .field-input-file {
	margin-bottom: 20px;
}

.input-file {
	position: relative;
	display: inline-block;
	margin-bottom: 15px;
}
.input-file-text {
	padding: 0 10px;
	line-height: 40px;
	text-align: left;
	height: 40px;
	
	box-sizing: border-box;
	width: 200px;
	border-radius: 6px 0px 0 6px;
	border: 0px solid #ddd;
}
.input-file-btn, .input-file-btnifb {
position: relative;
	display: inline-block;
	cursor: pointer;
	outline: none;
	text-decoration: none;
	font-size: 14px;
	vertical-align: middle;
	color: rgb(255 255 255);
	text-align: center;
	border-radius: 4px 4px 4px 4px;
	background-color: var(--theme-color-accent);
	line-height: 22px;
	height: 40px;
	padding: 10px 20px;
	box-sizing: border-box;
	border: none;
	margin: 0;
	transition: background-color 0.2s;
}
.input-file input[type=file] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}
 
/* Focus */
.input-file input[type=file]:focus + .input-file-btn, .input-file input[type=file]:focus + .input-file-btnifb {
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
 
/* Hover/active */
.input-file:hover .input-file-btn, .input-file:hover .input-file-btnifb {
	background-color: var(--theme-color-accent-dark);
}
.input-file:active .input-file-btn, .input-file:active .input-file-btnifb {
	background-color: var(--theme-color-accent-dark);
}
 
/* Disabled */
.input-file input[type=file]:disabled + .input-file-btn, .input-file input[type=file]:disabled + .input-file-btnifb {
	background-color: #eee;
}

.input-file-btnifb{
	background-color: #00A0E3;
	display: block;
}