﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  /* Set the fixed height of the footer here */
  height: 60px;
  line-height: 60px; /* Vertically center the text there */
}

/** User Group **/                                                                           /****/
#userGroupUI {
    margin: 10px 0px 10px 0px;
}

    #userGroupUI input {
        display: inline;
        margin: 0px 10px 0px 10px;
    }

    #userGroupUI #groupIdTextBox {
        width: 400px;
    }

/** User Profile **/                                                                         /****/
.img-circle {
    border-radius: 50%;
}

.left-div {
    float: left;
    width: 100px;
    margin-right: 8px;
}

.right-div {
    margin-left: 108px;
    max-width: 400px;
}

    .right-div .thumb-list li {
        padding: 0 15px 0 0px;
        min-height: 94px;
    }

.thumb-list {
    list-style: none;
    padding: 0;
}

    .thumb-list li {
        position: relative;
        min-height: 75px;
        margin-bottom: 15px;
        padding: 0 15px 0 90px;
    }

    .thumb-list strong {
        display: block;
        font-family: "GothamBold",Arial,sans-serif;
        font-weight: bold;
        color: #0b2d71;
    }

/** Flip Container **/                                                                       /****/
.flip-container {
    perspective: 1000px;
}
    .flip-container:active .flipper, .flip-container.active .flipper {
        transform: rotateY(180deg);
    }

.flip-container, .front, .back {
    width: 94px;
    height: 94px;
    display: inline-block;
}

.flipper {
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

.front, .back {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.front {
    z-index: 2;
    /* for firefox 31 */
    transform: rotateY(0deg);
}

.back {
    transform: rotateY(180deg);
}