﻿.grecaptcha-badge {
    visibility: hidden;
}

div, span, a, input {
    outline: none;
}

h1 {
    margin: 0;
    font-weight: normal;
}

body {
    margin: 0;
    font-family: Roboto;
    color: #4a4a4a;
    background-color: white;
    -webkit-tap-highlight-color: transparent;
    word-break: break-word;
    word-wrap: break-word;
}

    body a {
        text-decoration: none;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    body img {
        border: none; /* IE */
    }

.bm-modal-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.bm-textbox-header {
    color: #4a4a4a;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.bm-textbox {
    display: block;
    width: 100%;
    font-family: Roboto;
    font-size: 1rem;
    color: #4a4a4a;
    background-color: white;
    opacity: 1;
    padding: 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid #d0d0d0;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .bm-textbox:active,
    .bm-textbox:focus {
        border: 1px solid #357a01;
    }

    .bm-textbox:disabled {
        color: #737373;
        background-color: #FAFAFA;
        -webkit-text-fill-color: #737373;
        opacity: 1;
    }

    .bm-textbox::-webkit-input-placeholder,
    .bm-textbox:-ms-input-placeholder,
    .bm-textbox::placeholder {
        color: #737373;
        -webkit-text-fill-color: #737373;
    }

.bm-dropdown {
    position: relative;
    width: 100%;
}

    .bm-dropdown select {
        display: block;
        width: 100%;
        font-family: Roboto;
        font-size: 1rem;
        color: #4a4a4a;
        background-color: white;
        -webkit-text-fill-color: #4a4a4a;
        opacity: 1;
        padding: 0.5rem 2.5rem 0.5rem 0.5rem;
        border-radius: 0.25rem;
        border: 1px solid #d0d0d0;
        outline: none;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        cursor: pointer;
    }

        .bm-dropdown select:disabled {
            color: #737373;
            background-color: #FAFAFA;
            -webkit-text-fill-color: #737373;
            opacity: 1;
            cursor: default;
        }

        .bm-dropdown select::-ms-expand {
            display: none;
        }

    .bm-dropdown .bm-dropdown-arrow {
        position: absolute;
        right: 1rem;
        top: calc(50% - 8px);
        width: 8px;
        height: 8px;
        border: solid #4a4a4a;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        pointer-events: none;
    }

.bm-button {
    display: block;
    font-family: Roboto;
    font-size: 1rem;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    background-color: #3a8700;
    text-decoration: none;
    outline: none;
    border: 1px solid transparent;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .bm-button:hover {
        background-color: #317000;
    }

    .bm-button.bm-button-cancel {
        background-color: #737373;
    }

        .bm-button.bm-button-cancel:hover {
            background-color: #666666;
        }

    .bm-button.bm-button-danger {
        background-color: #ae3b1d;
    }

        .bm-button.bm-button-danger:hover {
            background-color: #9D351B;
        }

    .bm-button.bm-button-outline {
        color: #3a8700;
        border: 1px solid #3a8700;
        background-color: transparent;
    }

        .bm-button.bm-button-outline:hover {
            background-color: rgba(128,128,128,0.1);
        }


/* CheckBox */

.bm-checkbox {
    position: relative;
    display: block;
}

    .bm-checkbox .text {
        position: relative;
        display: block;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        padding: 0.5rem 0 0.5rem 2rem;
        font-size: 1rem;
        color: #4a4a4a;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .bm-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .bm-checkbox .checkmark {
        position: absolute;
        /*top: calc(50% - 8px);*/
        top: calc(0.5rem + 2px);
        left: 0;
        height: 14px;
        width: 14px;
        background-color: transparent;
        border: 1px solid #4a4a4a;
        border-radius: 2px;
    }

    .bm-checkbox:hover .text {
        color: black;
    }

    .bm-checkbox input:checked ~ .text {
        color: #357a01;
    }

    .bm-checkbox input:checked ~ .checkmark {
        background-color: #357a01;
        border: 1px solid #357a01;
    }

    .bm-checkbox .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .bm-checkbox input:checked ~ .checkmark:after {
        display: block;
    }

    .bm-checkbox .checkmark:after {
        left: 4px;
        top: 1px;
        width: 4px;
        height: 8px;
        border: solid white;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

/* ---------- */

/* RadioButton */

.bm-radiobutton {
    position: relative;
    display: block;
}

    .bm-radiobutton .text {
        position: relative;
        display: block;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        padding: 0.5rem 0 0.5rem 2rem;
        font-size: 1rem;
        color: #4a4a4a;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .bm-radiobutton input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .bm-radiobutton .radio {
        position: absolute;
        /*top: calc(50% - 8px);*/
        top: calc(0.5rem + 2px);
        left: 0;
        height: 14px;
        width: 14px;
        background-color: transparent;
        border: 1px solid #4a4a4a;
        border-radius: 50%;
    }

    .bm-radiobutton:hover .text {
        color: black;
    }

    .bm-radiobutton input:checked ~ .text {
        color: #357a01;
    }

    .bm-radiobutton input:checked ~ .radio {
        background-color: #357a01;
        border: 1px solid #357a01;
    }

/* ---------- */

.bm-validator-error {
    color: #C53030;
    font-size: 0.9rem;
    font-weight: 500;
}

.bm-content-width {
    width: 1200px;
    margin: 0 auto;
}

/* RATING STARS */

.rating-container .rating-stars .material-icons {
    font-size: 1em;
    vertical-align: top;
    color: #357a00 !important;
}

.rating-container .rating-value {
    font-size: 1em;
    color: #357a00 !important;
    margin-right: 0.5rem;
}

.rating-container .rating-count {
    font-size: 1em;
    color: #707070 !important;
    margin-left: 0.5rem;
}

/* ********************************* */

.master-feedback-link {
    display: block;
    position: fixed;
    z-index: 0;
    right: 0;
    bottom: 12rem;
    background-color: black;
    padding: 1rem 0.5rem;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

    .master-feedback-link:hover {
        background-color: #4a4a4a;
    }

/* ********************************* */

.master-oldbrowser {
    text-align: center;
}

    .master-oldbrowser .master-oldbrowser-frame {
        margin: 2em auto;
        width: 800px;
        border: 2px solid #d0d0d0;
        padding: 1em;
    }

    .master-oldbrowser .master-oldbrowser-frame-title {
        font-size: 1.25em;
        font-weight: bold;
        margin-bottom: 0.5em;
    }

    .master-oldbrowser .master-oldbrowser-frame-message {
        font-size: 1em;
        margin-bottom: 2em;
    }

    .master-oldbrowser table {
        width: 100%;
    }

    .master-oldbrowser td {
        width: 50%;
        text-align: center;
    }

    .master-oldbrowser img {
        width: 50px;
        height: 50px;
        border: none;
    }

@media (max-width: 1280px) {
    .master-feedback-link {
        display: none;
    }
}

@media (max-width: 1200px) {
    .bm-content-width {
        width: 100%;
    }
}

@media (max-width: 768px) {
}
