﻿header, footer {
    display: none;
}

.btn-greenwhite {
    color: rgb(73, 134, 67);
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(73, 134, 67);
}

.login_text {
    color: #498643 !important;
    font-size: 18px !important
}

.login-header {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.login-footer {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
/* .form-control {
            border-width: 0px 0px 2px 0px !important;
        }*/

input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus {
    box-shadow: inset 0 -1px 0 #ddd;
}

/*Controls the footer esp for small screens*/
@media (max-width: 365px) {

    .contentItems {
        font-size: 12px;
        padding-top: 50% !important;
    }

    .footerRs {
        display: none;
        clear: both;
    }

    .HFBackground {
        font-size: 12px;
    }
}

.HFBackground {
    padding: 2%;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 5%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #D8D8D8;
    width: 40%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
}

@media (max-width: 575px) {
    .modal-content {
        width: 95%;
    }
}

@media (max-width: 1024px ) and (min-width:600px) {
    .modal-content {
        width: 60%;
    }
}



.modal-body {
    padding: 2px 16px;
}

.modal-header {
    /*padding: 2px 8px;*/
    background-color: rgb(0, 140, 51);
    color: white;
    align-content: center;
    border-radius: 1rem 1rem 0rem 0rem;
    font-size: 18px;
}

.modal-content {
    border-radius: 1.3rem;
    border: 0px;
}

.bodyContent {
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

#divContainer {
    height: 100vh;
    overflow-y: hidden !important;
}

btn-contact {
    cursor: pointer;
    background-color: rgb(230, 230, 255);
    border-radius: 5px !important;
    padding: 1rem;
}

.btn-contact:hover {
    background-color: rgb(240, 230, 255);
}

.btn-contact.active {
    background-color: rgb(50, 50, 100);
    color: white;
}

.Message {
    display: block;
    background-color: rgb(255, 255, 200);
    padding: 1rem;
    border: solid 1px rgb(200, 200, 100);
}

    .Message:empty {
        display: none;
    }

    .Message > a {
        color: green;
    }
/* The boxcontainer */
.boxcontainer {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
    /* Registration page css*/

    /* Hide the browser's default checkbox */
    .boxcontainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #d8d7d6;
}

/* On mouse-over, add a grey background color */
.boxcontainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked*/
.boxcontainer input:checked ~ .checkmark {
    background-color: #96bf31;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.boxcontainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.boxcontainer .checkmark:after {
    left: 7px;
    top: -9px;
    width: 10px;
    height: 22px;
    border: solid #047d30;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*remove spinner from type=number for chrome & firefox*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.form-control.custom-border-bottom {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    box-shadow: none;
}

    .form-control.custom-border-bottom:focus {
        border-bottom: 2px solid #007bff; /* Bootstrap blue */
        outline: none; /* removes default outline */
        box-shadow: none; /* keeps it clean */
    }
