﻿body {
    padding-bottom: 20px;
}

.cursor-pointer {
    cursor: pointer;
}

.btn-icon-text {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    justify-content: space-around;
    border: none;
    font-size: 1.5rem;
    color: #212529;
    padding: 5px 2px;
}

.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.spinner {
    height: 10rem;
    width: 10rem;
}

.icon-blue {
    color: blue;
}

.icon-red {
    color: red;
}

.btn-icon-text:hover, btn-icon-text:focus {
    text-decoration: none;
    border: none;
}

.icon-text {
    font-size: 10px;
}

.btn-icon {
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    background-color: #212529;
    color: white;
    box-shadow: 1px 1px 1px 1px #ccc;
    min-width: 100px;
    border: none;
    font-size: 18px;
}

.btn-icon-sm {
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    background-color: #212529;
    color: white;
    box-shadow: 1px 1px 1px 1px #ccc;
    min-width: 100px;
    border: none;
    font-size: 12px;
}

.btn-icon-danger {
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    background-color: #c12e2a;
    color: white;
    box-shadow: 1px 1px 1px 1px #ccc;
    min-width: 100px;
    border: none;
    font-size: 18px;
}

.btn-icon[disabled], .btn-icon-danger[disabled], .btn-icon-text[disabled] {
    opacity: 0.4;
}

.btn-icon:hover, .btn-icon-sm:hover .btn-icon:focus, .btn-icon-danger:hover, .btn-icon-danger:focus {
    text-decoration: none;
    border: none;
    color: #ccc;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* login page spacing */
.login-container {
    max-width: 800px;
    flex-direction: column;
    width: 100%;
    height: 65%;
    padding: 5%;
    margin: auto auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h5 {
    font-weight: bold;
    font-size: 1.5rem;
}

hr {
    border-color: #29707070;
    margin: 10px 0;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }

    .confirm-box h2 {
        font-size: 1.5em;
    }
}

.dropdown {
    height: 40px;
    vertical-align: middle;
    min-width: 30%;
}

/* Hix custom buttons */
.btn {
    font-size: 18px;
}
.btn-hix, .btn-back {
    cursor: pointer;
    background-color: #333333;
    color: #ffffff;
    font-family: 'Minion Pro', serif;
    border-radius: 0;
    box-shadow: 1px 1px 3px gray;
    margin: 3px 3px;
}

    .btn-hix:hover, .btn-back:hover {
        color: silver;
    }

    .btn-hix:visited, .btn-back:visited, .btn-hix:focus, .btn-back:focus {
        color: #ffffff;
    }

.dbl-btn {
    margin-bottom: 10px;
}

.btn-fixed-width {
    width: 5rem;
}

.btn-danger, .btn-success {
    font-family: 'Minion Pro', serif;
    box-shadow: 1px 1px 3px gray;
    margin: 0 3px;
}

.btn.disabled,
.btn[disabled] {
    pointer-events: none;
}

.align-center {
    text-align: center;
}

.input-field-icon {
    float: right;
    margin-right: 10px;
    margin-left: -25px;
    margin-top: -27px;
    position: relative;
    z-index: 2;
}

.text-error {
    color: red !important;
}

.text-black {
    color: #000 !important;
}