﻿a img {
    border: 0px;
}

ul {
    padding-left: 30px;
    list-style: url('../images/icons/arrowsmall_dark.png');
}

.strikethrough, .underline, .italic, .bold, .strong, strong {
    font-size: inherit;
    line-height: inherit;
}

.strikethrough {
    text-decoration: line-through;
}

.underline {
    text-decoration: underline;
}

.italic {
    font-style: italic;
}

.bold, .strong {
    font-weight: bold;
}

td, th {
    vertical-align: top;
}

input, textarea, select {
    /*refresh*/
    border-radius: 4px;
    -webkit-border-radius: 4px;
}

select {
    border: 1px solid #999;
    width: 100%;
    /*refresh*/
    border-radius: 4px;
    -webkit-border-radius: 4px;
}

select, option {
    font-family: 'Century Gothic', Verdana, Arial, sans-serif;
    font-size: 16px;
    color: #333;
    height: 28px;
}

input[type="text"], input[type="number"], input[type="tel"], input[type="date"], input[type="search"], input[type="email"], input[type="password"], textarea {
    width: 100%;
    border: 1px solid #999;
    line-height: 20px;
    height: 28px;
    font-family: 'Century Gothic', Verdana, Arial, sans-serif;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    padding: 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box; /* Firefox */
    max-width: 325px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
}

    input[type="text"].watermark, input[type="email"].watermark, input[type="password"].watermark, textarea.watermark, input[type="text"].tgwatermark, textarea.tgwatermark {
        font-family: 'Century Gothic', Verdana, Arial, sans-serif;
        color: #999;
    }

    input[type="text"].tgwatermark {
        color: #AAA;
    }

select option {
    color: #666;
    height: 28px;
    line-height: 28px;
    font-size: 16px;
}

select option[disabled="disabled"] {
    color: #CCC;
    font-style: italic;
}

input[type="submit"] {
    background: #fff;
    color: #000;
    font-weight: bold;
    padding: 0px 2px;
}

input[type="radio"], input[type="checkbox"] {
    line-height: 24px;
    height: 24px;
    float: left;
}
span.checkboxtoggle {
    display: inline-block;
    height: 22px;
}
span.checkboxtoggle label {
    border-radius: 20px;
    border: 1px solid #333;
    content: ' ';
    width: 40px;
    display: inline-block;
    height: 20px;
    margin-left: 0px;
    border: 1px solid #999;
    background: #ccc;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;    
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    margin-top: 0px;
}
/* On mouse-over, add a grey background color */
span.checkboxtoggle label:hover {
    background-color: #bbb;
}
span.checkboxtoggle label::after {
    content: ' ';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
    top: 2px;
    left: 2px;
    transition: all 0.3s;
}
span.checkboxtoggle input:checked + label::after {
    left: 21px;
}
span.checkboxtoggle input:checked + label {
    background: #2799d9;
}
span.checkboxtoggle input {
    display: none;
}

/* Customize the label (the container) */
label.cbcontainer {
    display: block;
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-left: 0px;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    margin-top: 0px;
}

/* Hide the browser's default checkbox/radiobutton */
.cbcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0px;
    width: 0px;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 2px;
    left: 0px;
    height: 18px;
    width: 18px;
    background-color: #eee;
    box-sizing: border-box;
    border: 1px solid #999;
}
/* On mouse-over, add a grey background color */
.cbcontainer:hover input ~ .checkmark {
    background-color: #ccc;
}
/* When the checkbox is checked, add a blue background */
.cbcontainer input:checked ~ .checkmark {
    background-color: #0B9DDB;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: '';
    position: absolute;
    display: none;
}
/* Show the checkmark when checked */
.cbcontainer input:checked ~ .checkmark:after {
    display: block;
}
/* Style the checkmark/indicator */
.cbcontainer .checkmark:after {
    left: 5px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}



ul.rbstyling {
    padding: 0px;
    list-style: none;
}
/* Hide the browser's default radiobutton */
ul.rbstyling input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0px;
    width: 0px;
}
ul.rbstyling label {
    display: block;
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-left: 0px;        
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    margin-top: 0px;
}
/* On mouse-over, add a grey background color */
ul.rbstyling label:hover > span.checkmark {
    background-color: #ccc;
}
/* When the checkbox is checked, add a blue background */
ul.rbstyling input:checked + label > span.checkmark {
    background-color: #0B9DDB;
}
ul.rbstyling label span.checkmark {
    border-radius: 50%;
}
/* Show the checkmark when checked */
ul.rbstyling input:checked + label > span.checkmark:after {
    display: block;
}
/* Style the checkmark/indicator */
ul.rbstyling label span.checkmark:after {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}


input[type="file"] {
    display: none;
}

label.fileupload {
    cursor: pointer;
    height: 30px;
    display: block;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 11px;
    overflow: hidden;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    margin-top: 0px;
}

label.fileupload:hover {
    border-color: #F4244E;
    color: #F4244E;
}


label.fileupload span {
    line-height: 33px;
}

label.fileupload span.material-symbols-outlined {
    float: left;
    margin-top: 4px;
    margin-left: 5px;
    line-height: 1;
}
label {
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    margin-top: 4px;
}
/*label {
    float: left;
    margin-right: 5px;
    margin-left: 3px;
    line-height: 24px;
    font-weight: bold;
    font-size: 10px;
}*/

textarea {
    height: auto !important;
    width: 100%;
    overflow: hidden;
}

/*textarea.l {
    height: 45px;
}
textarea.xl {
    height: 85px;
}
textarea.xxl {
    height: 150px;
}*/

.nospam, .nospam * {
    visibility: hidden;
    display: none;
    overflow: hidden;
    height: 0px;
    width: 0px;
}

img.border {
    border: 1px solid #CCC;
}


.inputlabel {
    margin-top: 12px;
}
.inputlabel input, .inputlabel select, .inputlabel textarea {
    height: 45px;
    transition: border-color 250ms;
    background: transparent;
    padding-left: 7px;
}
.inputlabel input:focus, .inputlabel select:focus, .inputlabel textarea:focus {
    outline: none;
    border-color: #0B9DDB;
    border-width: 2px;
    padding-left: 6px;
    box-sizing: border-box;
}
.inputlabel textarea:focus {
    border-width: 1px;
}
.inputlabel.form-error input, .inputlabel.form-error select, .inputlabel.form-error textarea {
    border-bottom: 3px solid red;
}

.inputlabel input::placeholder, .inputlabel textarea::placeholder {
    color: transparent;
}
.inputlabel input:focus::-webkit-contacts-auto-fill-button,
.inputlabel select:focus::-webkit-contacts-auto-fill-button,
.inputlabel textarea:focus::-webkit-contacts-auto-fill-button
{
    visibility: hidden;
    pointer-events: none;
    position: absolute;
}
.inputlabel select {
    background-color: rgba(255, 255, 255, 0.01)
}
.inputlabel label {
    position: absolute;
    top: 9px;
    left: 8px;
    pointer-events: none;
    transition: 250ms;
    font-family: 'Century Gothic', Verdana, Arial, sans-serif;
    font-size: 16px;
    color: #999;
    font-weight: normal;
    border-radius: 4px;
}
.inputlabel input:focus + label,
.inputlabel input:not(:placeholder-shown) ~ label,
.inputlabel textarea:focus + label,
.inputlabel textarea:not(:placeholder-shown) ~ label,
.inputlabel select:focus + label,
.inputlabel select:not([value=""]) + label,
.inputlabel input:-webkit-autofill + label,
.inputlabel textarea:-webkit-autofill + label {
    background: #fff;
    z-index: 3;
    left: 7px;
    top: -12px;
    font-size: 13px;
    padding: 0px 4px;
    color: #666;
}
.inputlabel input:focus + label,
.inputlabel textarea:focus + label,
.inputlabel select:focus + label {
    color: #0B9DDB;
}

.inputlabel input:disabled + label,
.inputlabel input:disabled + textarea,
.inputlabel select:disabled + label {
    color: #999;
}

/*.radiolabel {
    border: 1px solid #999;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 8px;
    padding-top: 15px;
    margin-bottom: 18px
}
.radiolabel label {
    color: #333;
    font-family: 'Century Gothic', Verdana, Arial, sans-serif;
    font-size: 13px;
}
.radiolabel label:first-child {
    pointer-events: none;
    font-family: 'Century Gothic', Verdana, Arial, sans-serif;
    font-size: 13px;
    color: #666;
    font-weight: normal;
    background: white;
    z-index: 3;
    left: 7px;
    top: -13px;
    padding: 0px 4px;
    color: #333;
    position: absolute;
}
.radiolabel span.validator {
    position: absolute;
    right: -12px;
    top: 10px;
}*/




.radiolabel {
    box-sizing: border-box;
    padding-top: 15px;
    margin-bottom: 20px
}
.radiolabel label {
    color: #333;
    font-family: 'Century Gothic', Verdana, Arial, sans-serif;
    font-size: 13px;
}
.radiolabel label:first-child {
    pointer-events: none;
    font-family: 'Century Gothic', Verdana, Arial, sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: normal;
    background: #fff;
    z-index: 3;
    /*left: 7px;*/
    top: -13px;
    padding: 0px 4px;
    color: #333;
    position: absolute;
}
.radiolabel span.validator {
    position: absolute;
    left: 93px;
    top: -12px;
}