@font-face {
    font-family: "Proxima Nova";
    src: url("fonts/proximanova-regular.otf");
}

@font-face {
    font-family: "Proxima Nova";
    font-weight: bold;
    src: url("fonts/proximanova-bold.otf");
}

body {
    /*background-color: #983398 !important;*/ /*#3cbe0a*/
    font-family: "Proxima Nova", sans-serif;
    background-image: url("../images/bg.jpeg") !important;
}

body.in-frame {
    background-color: transparent !important;
}

.login_wrapper {
    margin-top: 1rem;
    max-width: 520px !important;
    -webkit-transition: margin 500ms ease-out 1s;
    -moz-transition: margin 500ms ease-out 1s;
    -o-transition: margin 500ms ease-out 1s;
    transition: margin 500ms ease-out 1s;
}

.login_form {
    background-color: white;
    border-radius: .75rem;
    padding: 0 2rem;
}

.login_content {
    text-shadow: none !important;
}

.login_content a {
    margin: 0 !important;
}

.btn-primary {
    background-color: #00578A;
    border-color: #00578A;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #003D60 !important;
    border-color: #003D60 !important;
}

.btn-info {
    background-color: #983398; /*#3cbe0a*/
    border-color: #983398;
    color: #000000 !important; /*##FFF*/
    padding: .375rem .75rem !important;
    color: #FFFFFF !important;
}

    .btn-info:hover, .btn-info:focus, .btn-info:active {
        background-color: #983398 !important;
        border-color: #983398 !important;
        color: #FFFFFF !important;
    }

.btn-info.disabled, .btn-info:disabled {
    background-color: #AAAAAA !important;
    border-color: #AAAAAA !important;
}

.bold {
    font-weight: bold;
}

.bold-money {
    font-size: 18px;
    font-weight: 600;
    color: #983398; /*#3cbe0a*/
}

.separator {
    color: grey;
}

.form-control::placeholder {
    opacity: 0.5;
}

.radio label, .checkbox label {
    cursor: pointer;
}

.input-group label, .input-group label input {
    margin-bottom: 0 !important;
}

.text-alianspay-black {
    color: #212529;
}

.text-muted {
    color: #212529 !important;
}

.pointer {
    cursor: pointer !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.ml-2, .mx-2 {
    margin-left: .5rem !important;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
}



/* Customize the label (the container) */
.label-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.label-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.label-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.label-container input:checked ~ .checkmark {
    background-color: #983398; /*#3cbe0a*/
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.label-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.label-container .checkmark:after {
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.payment-method-text {
    margin-left: 10px;
    font-family: "Proxima Nova", sans-serif;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -230px; /* Divide value of min-width by 2 */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}
