﻿body,
html {
    font-family: 'Lato', sans-serif;
}

body {
    background: #FFF;
}

*,
::after,
::before {
    box-sizing: border-box;
}

p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: no-repeat center center / cover;
    z-index: -1;
}

.receipt-wrapper {
    position: relative;
    display: flex;
    height: 100%;
    padding: 30px 0;
    margin: 0 30px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}

a.logo {
    margin: 30px 0 15px;
    display: block;
}

    a.logo img {
        width: 115px;
    }

.receipt {
    background: #FFF;
    width: 360px;
    padding: 0 30px;
    border-radius: 2px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
}

.mcp-title {
    margin: 0 0 5px;
    font-size: 24px;
    color: #92AF2F;
    font-weight: 500;
    line-height: 36px;
}

.mcp-subtitle {
    margin: 0;
    font-size: 20px;
}

.receipt-section-bg {
    padding: 25px 30px 20px 30px;
    margin: 0 -30px;
    background: #F1F1F1;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    border-radius: 0 0px 2px 2px;
}

    .receipt-section-bg > img {
        width: 100%;
    }

.form-group {
    margin: 0 0 25px;
}

    .form-group label {
        color: #666;
        font-size: 14px;
        line-height: 15px;
    }

    .form-group .form-control {
        margin-bottom: 10px;
    }

.form-error {
    color: #dc3545;
    margin-top: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 14px;
    display: flex;
}

    .form-error i {
        font-size: 18px;
        margin: 2px 7px 0 0;
    }

.was-validated .form-control:invalid, .form-control.is-invalid {
    background-image: none;
}

.custom-select:invalid, .custom-select.is-invalid {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
}
.k-datetimepicker {
    height: 42px;
    margin-bottom: 10px;
}

    .k-datetimepicker .k-input {
        height: 100%;
    }

.form-error:empty {
    display: none;
}

::-webkit-input-placeholder {
    opacity: 0.5;
    color: #696969;
}

::-moz-placeholder {
    opacity: 0.5;
    color: #696969;
}

:-ms-input-placeholder {
    opacity: 0.5;
    color: #696969;
}

:-moz-placeholder {
    opacity: 0.5;
    color: #696969;
}

.button {
    width: 100%;
    margin: 0 0 25px;
    padding: 17px 10px;
    display: block;
    border-radius: 2px;
    border: 0;
    background-color: #E37A1F;
    font-size: 16px;
    color: #FFF;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 5px 15px 0 rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

button:hover {
    background: #d87b01;
}

.g-recaptcha {
    width: 100%;
}

select {
    width: 100%;
}

@media (max-width: 450px) {
    body {
        background: #92AF2F;
    }

    .receipt {
        width: 100%;
        max-width: 315px;
        box-shadow: none;
    }

    .background-overlay {
        display: none;
    }
}
