/* global body padding */
body {
  padding-top:    20px;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  body {
    padding-top:    50px;
    padding-bottom: 50px;
  }
}

/*Hide extra dropdown arrow in IE*/
select::-ms-expand {
    display: none;
}

/*Get rid of top shadow in ios*/
input[type=text], input[type=password] {
    -webkit-appearance: none;
}

/* global spacing overrides */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  margin-top: 0;
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor:default;
}

hr {
    margin-top: 30px;
    margin-bottom: 30px;
}

.navbar-fixed-top,
.navbar-static-top {
  border-bottom: 0;
}

.popover-content ul {
    list-style-type: none;
    padding-left:8px;
}

.popover-content li:before {
    margin-right:8px;
}

.popover-content li.icon-cross {
    color: #e64759;
}

.popover-content li.icon-check {
    color: #1bc98e;
}

/*Loading spinner*/
.spinner-container {
    position:relative;
    min-height:27px;
}
.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
}
.spinner span {
    display: block;
    margin: -25px;
    height: 50px;
    width: 50px;
    -webkit-animation: rotate 1.4s infinite linear;
    animation: rotate 1.4s infinite linear;
    border: 5px solid #666;
    border-right-color: transparent;
    border-radius: 50%
}
.spinner.small span {
    margin: -18px;
    height: 36px;
    width: 36px;
    border-width:3px;
}

.progress-container {
    position: relative;
}
.progress-overlay {
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background-color: rgba(255,255,255,0.7);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

/* Fix warning alert background color */
.alert-warning {
    background-color: #f5b90e;
    border-color: #f5b90e;
}