input,
textarea,
select,
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

form {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: rgb(29, 29, 31);
    cursor: pointer;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
    display: inline;
    font-weight: 400;
    margin-right: 15px;
    cursor: pointer;
}

input,
textarea,
select {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 15px;
    color: rgb(29, 29, 31);
    border: 1px solid #ccc;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    outline: none;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
    -moz-transition: background-color 0.3s ease, -moz-box-shadow 0.3s ease;
    -o-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2386868B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    padding-right: 36px;
    height: auto;
}

input:focus,
textarea:focus,
select:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
    -moz-box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
}

input:hover:not(:disabled),
textarea:hover:not(:disabled),
select:hover:not(:disabled) {

}

input:disabled,
textarea:disabled,
select:disabled {
    color: rgb(134, 134, 139);
    cursor: not-allowed;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: rgb(134, 134, 139);
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: rgb(134, 134, 139);
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: rgb(134, 134, 139);
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: rgb(134, 134, 139);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #ccc;
    position: relative;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
    -moz-transition: background-color 0.3s ease, border-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

input[type="checkbox"]:focus {
    border-color: rgb(0, 113, 227);
}

input[type="checkbox"]:hover:not(:disabled) {

}

input[type="checkbox"]:checked {
    background: rgb(0, 113, 227);
    border-color: rgb(0, 113, 227);
}

input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

input[type="checkbox"]:disabled {
    background-color: rgb(245, 245, 247);
    border-color: #ccc;
    cursor: not-allowed;
}

input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #ccc;
    position: relative;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
    -moz-transition: background-color 0.3s ease, border-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

input[type="radio"]:focus {
    border-color: rgb(0, 113, 227);
}

input[type="radio"]:hover:not(:disabled) {

}

input[type="radio"]:checked {
    background: rgb(0, 113, 227);
    border-color: rgb(0, 113, 227);
}

input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background: white;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

input[type="radio"]:disabled {
    background-color: rgb(245, 245, 247);
    border-color: #ccc;
    cursor: not-allowed;
}

button,
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: rgb(255, 255, 255);
    background: #0071e3;
    border: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    cursor: pointer;
    outline: none;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.1s ease;
    -moz-transition: background-color 0.3s ease, -moz-box-shadow 0.1s ease;
    -ms-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease, box-shadow 0.1s ease;
}

button:hover:not(:disabled),
.button:hover:not(:disabled) {
    background: rgb(0, 119, 237);
}

button:active:not(:disabled),
.button:active:not(:disabled) {
    background: rgb(0, 98, 193);
    position: relative;
    top: 1px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

button:focus,
.button:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
    -moz-box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
}

button:disabled,
.button:disabled {
    background: rgb(245, 245, 247);
    color: rgb(134, 134, 139);
    cursor: not-allowed;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

button.secondary,
.button.secondary {
    background: rgb(245, 245, 247);
    color: rgb(0, 113, 227);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

button.secondary:hover:not(:disabled),
.button.secondary:hover:not(:disabled) {
    background: rgb(232, 232, 237);
}

button.secondary:active:not(:disabled),
.button.secondary:active:not(:disabled) {
    background: rgb(224, 224, 229);
    top: 1px;
}

button.secondary:focus,
.button.secondary:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
    -moz-box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
}

button.button-fn {
    padding: 0 5px;
    font-size: 10px;
    background-color: rgb(245, 245, 247);
    color: rgb(134, 134, 139);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: solid 1px transparent;
}

button.button-fn:hover {
    padding: 0 5px;
    font-size: 10px;
    background-color: rgb(245, 245, 247);
    color: rgb(134, 134, 139);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: solid 1px rgb(134, 134, 139);
}

.form-group {
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    margin-bottom: 20px;
}

th,
td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid rgb(210, 210, 215);
}

th {
    font-weight: 500;
    color: rgb(134, 134, 139);
    text-transform: uppercase;
    font-size: 12px;
}

tr:hover {
    background-color: rgb(245, 245, 247);
}

#show-more-comments {
    margin-top: 20px;
    font-weight: 400;
    display: inline-block;
    padding: 10px 36px 10px 10px;
    font-size: 15px;
    color: rgb(29, 29, 31);
    background-color: white;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    border: 1px solid #ccc;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    text-align: left;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    -webkit-transition: background-color 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: background-color 0.3s ease, box-shadow 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

#show-more-comments.arrow-down {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2386868B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

#show-more-comments.arrow-up {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2386868B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='18 15 12 9 6 15'%3e%3c/polyline%3e%3c/svg%3e");
}

#show-more-comments:focus {
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
    outline: none;
}

#show-more-comments:disabled {
    color: rgb(134, 134, 139);
    cursor: not-allowed;
    background-color: rgb(245, 245, 247);
}