.loaderContWrap{
    position: fixed;
    z-index: 9999;
    width: 100%;
}
.wrap-loader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background:rgba(0, 0, 0, 0.8);
  }

  .loader {
    position: relative;
    width: 20rem;
    height: 20rem;
  }
  .loader::before {
    z-index: 1;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 8.6956521739rem;
    height: 8.6956521739rem;
    background: #000;
    border-radius: 50%;
  }
  .loader .box {
    position: absolute;
    width: 10rem;
    height: 10rem;
    overflow: hidden;
  }
  .loader .box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.1;
  }
  .loader .box:nth-child(1) {
    top: 0;
    left: 0;
  }
  .loader .box:nth-child(1)::before {
    top: 50%;
    left: 50%;
    background: #4185F3;
    -webkit-animation: lightMe1 4s ease-out infinite normal;
            animation: lightMe1 4s ease-out infinite normal;
  }
  .loader .box:nth-child(2) {
    top: 0;
    right: 0;
  }
  .loader .box:nth-child(2)::before {
    top: 50%;
    right: 50%;
    background: #33A753;
    -webkit-animation: lightMe2 4s ease-out infinite normal;
            animation: lightMe2 4s ease-out infinite normal;
  }
  .loader .box:nth-child(3) {
    bottom: 0;
    right: 0;
  }
  .loader .box:nth-child(3)::before {
    bottom: 50%;
    right: 50%;
    background: #FABB04;
    -webkit-animation: lightMe3 4s ease-out infinite normal;
            animation: lightMe3 4s ease-out infinite normal;
  }
  .loader .box:nth-child(4) {
    bottom: 0;
    left: 0;
  }
  .loader .box:nth-child(4)::before {
    bottom: 50%;
    left: 50%;
    background: #E94234;
    -webkit-animation: lightMe4 4s linear infinite normal;
            animation: lightMe4 4s linear infinite normal;
  }
  .loader .wrap-text {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    overflow: hidden;
  }
  .loader .text {
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 40px;
    -webkit-animation: slider 8s ease-in infinite;
            animation: slider 8s ease-in infinite;
  }
  .loader .text span {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 2em;
    color: #fff;
  }

  .loader-text {
    color: #fff;
    -webkit-transform: translateY(-2rem);
            transform: translateY(-2rem);
    letter-spacing: 6px;
    opacity: .2;
    -webkit-animation: blink 1s ease-out infinite alternate;
            animation: blink 1s ease-out infinite alternate;
  }

  .btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited {
    background-color: #143E5C !important;
    border-color: #143E5C !important;
    background-image: linear-gradient(to right, #133755 , #7c1f1e) !important;
  }

  @-webkit-keyframes lightMe1 {
    0% {
      opacity: 0.1;
    }
    25% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }

  @keyframes lightMe1 {
    0% {
      opacity: 0.1;
    }
    25% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes lightMe2 {
    0% {
      opacity: 0.1;
    }
    25% {
      opacity: 0.1;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes lightMe2 {
    0% {
      opacity: 0.1;
    }
    25% {
      opacity: 0.1;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes lightMe3 {
    0% {
      opacity: 0.1;
    }
    50% {
      opacity: 0.1;
    }
    75% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes lightMe3 {
    0% {
      opacity: 0.1;
    }
    50% {
      opacity: 0.1;
    }
    75% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes lightMe4 {
    0% {
      opacity: 0.1;
    }
    75% {
      opacity: 0.1;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes lightMe4 {
    0% {
      opacity: 0.1;
    }
    75% {
      opacity: 0.1;
    }
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes slider {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    15% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    30% {
      -webkit-transform: translateY(-40px);
              transform: translateY(-40px);
    }
    45% {
      -webkit-transform: translateY(-40px);
              transform: translateY(-40px);
    }
    60% {
      -webkit-transform: translateY(-80px);
              transform: translateY(-80px);
    }
    75% {
      -webkit-transform: translateY(-80px);
              transform: translateY(-80px);
    }
    90% {
      -webkit-transform: translateY(-120px);
              transform: translateY(-120px);
    }
    100% {
      -webkit-transform: translateY(-120px);
              transform: translateY(-120px);
    }

  }
  @keyframes slider {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    15% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    30% {
      -webkit-transform: translateY(-40px);
              transform: translateY(-40px);
    }
    45% {
      -webkit-transform: translateY(-40px);
              transform: translateY(-40px);
    }
    60% {
      -webkit-transform: translateY(-80px);
              transform: translateY(-80px);
    }
    75% {
      -webkit-transform: translateY(-80px);
              transform: translateY(-80px);
    }
    90% {
      -webkit-transform: translateY(-120px);
              transform: translateY(-120px);
    }
    100% {
      -webkit-transform: translateY(-120px);
              transform: translateY(-120px);
    }
  }
  @-webkit-keyframes blink {
    from {
      opacity: .2;
    }
    to {
      opacity: .75;
    }
  }
  @keyframes blink {
    from {
      opacity: .2;
    }
    to {
      opacity: .75;
    }
  }
  .otocolor-red, .badge-danger, .btn-danger, .bg-danger{
    background-color:#911e0f !important;
    border: none !important;
  }
  .ototextcolor-red{
    color:#911e0f !important;
  }
  .ototextcolor-blue{
    color:#133B5D !important;
  }
  .otocolor-blue{
    background-color:#133B5D !important;
  }
  .showyes {
    display:block;
}
.hideyes {
    display:none;
}
.cursor {
    cursor: pointer;
}
.box-shadow {
   box-shadow: 0 8px 6px -6px black;
   border: 1px solid #c1c1c1;
}
.btn-border-sellect{
    border-top: 1px solid #c1c1c1;
    padding-top: 5px;
  }
.rule-container{
    position: absolute;
    right: 100px;
    z-index: 9999;
}
.rule-modal-footer{
    width: 100%;
    position: absolute;
    bottom: 0;
    top: 0;
    z-index: 99999;
    display: none;
    background: transparent;
}
.close-rule{
    cursor: pointer;
}
.rule-model-container{
    background: #fff;
    border: 3px solid #ebebeb;
    overflow-y: scroll;
    position: fixed;
    bottom: 5px;
    width: 83%;
    max-height: 300px;
}
.btn-link{
    color:#000!important;
    text-decoration: none!important;
    font-weight: 600;
    background-color:  #ebebeb;
    padding: 5px 0px;
    cursor: pointer;
    width: 100%;
    display: block;
    text-align: left;
    margin: 0px;
}
.loadLineHighLight:after, .loadLineHighLight:before{
    margin-top:0;
}
