html,
body {
    height: 100%;
}

.wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -60px;
    padding: 0 0 60px;
}

.wrap > .container {
    padding: 70px 15px 20px;
}

.wrap > .container-fluid {
    padding: 70px 40px 20px;
}

.wrap > .container-fluid.dashboard-fluid {
    padding: 70px 0px 0px;
}

.footer {
    height: 60px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.jumbotron {
    text-align: center;
    background-color: transparent;
}

.jumbotron .btn {
    font-size: 21px;
    padding: 14px 24px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

a, a:visited {
    color: #7E7A80;
}

a:hover, a:active, a:active:hover, a:focus, a:active:focus {
    color: #CEB686;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
}

a.asc:after {
    content: /*"\e113"*/ "\e151";
}

a.desc:after {
    content: /*"\e114"*/ "\e152";
}

.sort-numerical a.asc:after {
    content: "\e153";
}

.sort-numerical a.desc:after {
    content: "\e154";
}

.sort-ordinal a.asc:after {
    content: "\e155";
}

.sort-ordinal a.desc:after {
    content: "\e156";
}

.grid-view th {
    /*white-space: nowrap;*/
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
    padding: 15px;
    border: none;
}

@media (max-width: 767px) {
    .nav li > form > button.logout {
        display: block;
        text-align: left;
        width: 100%;
        padding: 10px 15px;
    }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
    text-decoration: none;
}

.nav > li > form > button.logout:focus {
    outline: none;
}

.table.table-striped td img {
    display: none;
}

.btn-info, .btn-info:visited {
    color: #fff;
    background-color: #7E7A80;
    border-color: #7E7A80;
}

.btn-info:hover, .btn-info:active, .btn-info:active:hover, .btn-info:focus, .btn-info:active:focus {
    color: #fff;
    background-color: #CEB686;
    border-color: #CEB686;
}

.btn-success, .btn-success:visited {
    color: #fff;
    background-color: #202B39;
    border-color: #202B39;
}

.btn-success:hover, .btn-success:active, .btn-success:active:hover, .btn-success:focus, .btn-success:active:focus {
    color: #fff;
    background-color: #CEB686;
    border-color: #CEB686;
}

.navbar-inverse {
    background-color: #202B39;
    border-color: #202B39;
}

.navbar-inverse .navbar-brand {
    color: #CEB686;
}

.footer {
    background-color: #B4B3BB;
}

h1 .text-info {
    color: #CEB686;
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #191E23;
}

.navbar-inverse ul.navbar-nav > li.nav-mentions > ul.dropdown-menu > li > a {
    min-width: 300px;
    white-space: normal;
}

.site-login {
    max-width: 587px;
    margin: 0 auto;
    padding: 0 15px;
}

.site-login .form-group {
    margin: 0;
}

#user-type-radio-list label {
    display: block;
}

.pipeline-quick-create-btn {
    position: fixed;
    top: 300px;
    right: -43px;
    transform: rotate(270deg);
    display: inline-block;
    z-index: 2;
}

.achievement-container {
    min-height: 292px;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.achievement-container .achievement-card {
    max-width: 216px;
    height: 100%;
    object-fit: cover;
    background-color: #fff;
    border-radius: 8px;
    padding: 4px;
    /*-webkit-box-reflect:below 2px linear-gradient(transparent, transparent, #0004);*/
    transform-origin: center;
    transform: perspective(800px) rotateY(25deg);
    transition: 0.5s;
}

.achievement-container .achievement-card .thumbnail {
    margin: 0;
    border: 2px solid #bbb;
    border-radius: 6px;
}

.achievement-container .achievement-card .thumbnail .caption {
    padding: 0;
}

.achievement-container .achievement-card .thumbnail .caption p {
    margin: 0;
}

.achievement-container:hover .achievement-card {
    opacity: 0.3;
}

.achievement-container .achievement-card:hover {
    transform: perspective(800px) rotateY(0deg);
    opacity: 1;
    box-shadow: rgba(255, 255, 255, 0.2) 0px 18px 50px -10px;
}

.shelf {
    display: block;
    position: relative;
    width: 100%;
    height: 20px;
    margin: 20px auto 0;
    opacity: 0.6;
    background-image: -moz-linear-gradient(90deg, #d1d8de 0%, #eff1f3 100%);
    /*FF3.6+ */
    background-image: -webkit-gradient(90deg, left top, right bottom, color-stop(0%, #d1d8de), color-stop(100%, #eff1f3));
    /*Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(90deg, #d1d8de 0%, #eff1f3 100%);
    /*Chrome10+,Safari5.1+ */
    background-image: -o-linear-gradient(90deg, #d1d8de 0%, #eff1f3 100%);
    /* Opera 11.10+ */
    background-image: -ms-linear-gradient(90deg, #d1d8de 0%, #eff1f3 100%);
    /*IE10+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eff1f3', endColorstr='#d1d8de', GradientType='0');
    /* IE6-9 */
    -webkit-box-shadow: 0 2px 2px #708698, 0 4px 0 #abb8c3, 0 20px 30px -8px #fff, transparent 0 0 0, transparent 0 0 0, transparent 0 0 0;
    -moz-box-shadow: 0 2px 2px #708698, 0 4px 0 #abb8c3, 0 20px 30px -8px #fff, transparent 0 0 0, transparent 0 0 0, transparent 0 0 0;
    box-shadow: 0 2px 2px #708698, 0 4px 0 #abb8c3, 0 20px 30px -8px #fff, transparent 0 0 0, transparent 0 0 0, transparent 0 0 0;
}

.bookend_left {
    display: block;
    position: absolute;
    left: -25px;
    top: -18px;
    width: 36px;
    height: 36px;
    background-color: #202B39;
    -webkit-transform: rotate(35deg);
    -moz-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    -o-transform: rotate(35deg);
}

.bookend_left:before {
    position: absolute;
    top: 31px;
    left: 17px;
    width: 20px;
    height: 10px;
    background-color: #202B39;
    content: "";
    -webkit-transform: rotate(-35deg);
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
}

.bookend_right {
    display: block;
    position: absolute;
    right: -25px;
    top: -18px;
    width: 36px;
    height: 36px;
    background-color: #202B39;
    -webkit-transform: rotate(-35deg);
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
}

.bookend_right:before {
    position: absolute;
    top: 31px;
    right: 17px;
    width: 20px;
    height: 10px;
    background-color: #202B39;
    content: "";
    -webkit-transform: rotate(35deg);
    -moz-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    -o-transform: rotate(35deg);
}

.shelf .reflection {
    display: block;
    position: absolute;
    top: 20px;
    left: 1px;
    width: 99.8%;
    height: 1px;
    background-image: -moz-linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 35%, #ffffff 65%, rgba(255, 255, 255, 0.7) 100%);
    /*FF3.6+ */
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, #ffffff), color-stop(35%, rgba(255, 255, 255, 0.5)), color-stop(65%, #ffffff), color-stop(100%, rgba(255, 255, 255, 0.7)));
    /*Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 35%, #ffffff 65%, rgba(255, 255, 255, 0.7) 100%);
    /* Chrome10+,Safari5.1+ */
    background-image: -o-linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 35%, #ffffff 65%, rgba(255, 255, 255, 0.7) 100%);
    /* Opera 11.10+ */
    background-image: -ms-linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 35%, #ffffff 65%, rgba(255, 255, 255, 0.7) 100%);
    /*IE10+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255, 255, 255, 0.7)', endColorstr='#ffffff', GradientType='0');
    /* IE6-9 */
}

table.table-striped > tbody > tr.opportunity-replaced {
    background-color: #cccccc;
}

#global-toast-container {
    width: 320px;
    position: absolute;
    right: 40px;
    bottom: 60px;
    z-index: 10;
}

.user-index #user-grid .table td .dropup {
    display: inline;
}

.table td .dropup .dropdown-menu {
    padding: 8px;
}

.user-index #user-grid .table td .dropup .dropdown-menu a:first-of-type {
    margin-bottom: 6px;
}

.user-index #user-grid .table td .dropup .dropdown-menu a {
    display: block;
}

.user-index #user-grid .table td .dropup .dropdown-menu a:visited {
    color: #ffffff;
}

.xero-sign-in {
    margin-top: 10px;
}

#xero-sign-in {
    width: 100%;
}

.list-striped > li:nth-child(odd){
    background-color: #f9f9f9;
}

.dropdown-menu{
    min-width: 230px!important;
}

.col-md-20-percent{
    width: 20%;
}

.col-md-12-percent{
    width: 12%;
}

.col-md-11-percent{
    width: 11%;
}

.col-md-10-percent{
    width: 10%;
}

.col-md-9-percent{
    width: 9%;
}


.gauge-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0 auto;
    text-align: center;
}

.partner-performance-form label {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.partner-performance-form input[type="date"] {
    margin: 0 auto;
    display: block;
    width: 250px;
    padding: 5px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.partner-performance-form .btn {
    font-size: 16px;
    padding: 10px 20px;
}

.partner-performance-form .form-group {
    margin-bottom: 20px;
}

.gauge-viewer {
    overflow: hidden;
}

.gauge-viewer { !important;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

#progress-tracker {
    font-size: 16px;
    margin: 10px 0;
}

.response-boxes {
     display: flex;
     gap: 10px;
     margin: 10px 0;
 }

.response-box {
    cursor: pointer;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    position: relative;
    width: 100px;
    transition: all 0.3s ease;
}

.response-box:hover {
    border-color: #007bff;
}

.response-box.selected {
    border-color: #28a745;
    background-color: #e9ffe9;
}

.response-box .icon {
    display: none;
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 18px;
    color: #28a745;
}

.response-box.selected .icon {
    display: inline-block;
}

.power-bi-dashboard {
    width: 100%;         /* full width */
    height: 88vh;       /* or any height, could also be vh units */
    position: relative;  /* needed if iframe is absolutely positioned */
    overflow: hidden;    /* optional if you want to crop */
}

.sage-nav-logo {
margin-top: 5px;
}

.partner-pipeline-modal-title {
    margin-bottom: 10px;
}





