﻿
html, body {
    font-family: 'Nunito Sans',sans-serif ;   
}


.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff !important;
    border-color: #FF5A47 !important;
    background-color: #FF5A47 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active
{
    background-color: white !important;
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #FF5A47;
    outline: 0;
    box-shadow: none;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #FF5A47 !important;
    font-style: italic !important;
    opacity: 0.4 !important;
}


.form-control{
    border-radius:0px !important;
}

.width-200 {
    width: 200px;
    max-width: 200px;
}

.hide {
    display: none;
}

.btn-grassroots {
    background-color: #FF5A47;
    color: white;
    font-size: 14px;
    box-shadow: none;
    border: none;
    height: 37px;
}

.btn-grassroots-large {
    background-color: #FF5A47;
    color: white;
    font-size: 18px;
    box-shadow: none;
    border: none;
    height: 37px;
}

.btn-grassroots:enabled {
}

.btn-grassroots:enabled:hover {
    text-decoration: underline;
}

a.nav-link{
    color:white;
}

a.nav-link:disabled {
    color: black;
}


a, .btn-link {
    color: #0366d6;
}

.content {
    padding-top: 1.1rem;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}


.modal-Payment-Options {
    display: block;
    background-color: rgba(10,10,10,.8);
}




.chat-btn .close {
    display: none
}

.chat-btn i {
    transition: all 0.9s ease
}

.chat-btn {
    position: absolute;
    right: 30px;
    top: 20px;
    cursor: pointer;
    z-index: 3;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background-color: #FF5A47;
    color: #fff;
    font-size: 28px;
    font-weight:bold;
    border: none
}

.wrapper {
    position: absolute;
    right: 50px;
    top: 40px;
    width: 400px;
    background-color: white;
    border-radius: 0px;
    border: solid #FF5A47;
    opacity: 0;
    transition: all 0.4s;
    padding: 10px;
    display: none;
}

#check:checked ~ .wrapper {
    opacity: 1;
    display:block;
    
}


#check {
    display: none !important
}