html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner > *{
  opacity: 0;
}

/* Spinner */
body.show-spinner::before{
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
.has-error {
    border: #dc0000 1px solid;
}
.logo-single {
    width: 215px;
    height: 70px;
    background: url(../../../img/logo-antaeus.png) no-repeat;
    background-position: 50%;
    margin-bottom: 30px;
}
.bottom-content-login {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 10px;
    color: white;
    text-align: center;
    width: 100%;
}
tr {
font-size:16px
}
th.text-right {
display:none;
}
.modal-dialog {
    border-radius: calc(0.15rem - 1px);
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.04), 0 1px 6px rgba(0, 0, 0, 0.04);
    margin-top: 135px;
}
.bd-example-modal-lg {
    z-index: 9999;
}
.canceloffer {
    position: absolute;
    z-index: 0;
    background: white;
    display: block;
    min-height: 50%;
    min-width: 50%;
    color: yellow;
}

.cancelorfer-content {
    position: relative;
    z-index: 1;
}

.cancel-bg-text {
    color: #ffcccc;
    font-size: 90px;
    transform: rotate(335deg);
    -webkit-transform: rotate(335deg);
    right: 40%;
    float: right;
    top: 200px;
    position: absolute;
}
.canceleddiv {
    opacity: 0.7;
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

    .lds-ripple div {
        position: absolute;
        border: 4px solid #2276aa;
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .lds-ripple div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}