/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  overflow: auto;

  text-align: center;

  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;

  outline: none;

  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

 #loading {
  display: table;
  z-index: 999;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.8;
}

#loading .loadingMsg {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding-top: 140px;
  background: url("/resources/rfc/image/common/loading.gif") center center no-repeat;
}

#uidPopup {
 top: 10px !important
}

@media ( min-width :992px) {
 #uidPopup {
  top: 10px !important
 }
}

.uid-popup {
    background: #FFF;
    width: 90%;
    max-width: 570px;
    margin: 0 auto;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    overflow: hidden
}

.uid-popup .proceed {
    text-align: center;
    clear: both
}

.uid-popup .proceed p:first-child {
    font-weight: 700;
    background: #000000;
    color: #FFF;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.4;
    padding: 10px 0
}

.uid-popup .proceed p:first-child strong {
    font-size: 20px;
    font-size: 2rem
}

.uid-popup .proceed a.btn-proceed {
    display: block;
    text-align: center;
    background: #94898e;
    position: relative;
    font-size: 14px;
    font-size: 1.4rem;
    color: #FFF;
    height: 40px;
    line-height: 40px;
    margin-top: 5px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px
}

.uid-popup .proceed a.btn-proceed i {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -7px
}

.uid-popup .proceed a.btn-proceed:hover {
    background: #000000
}

.uid-popup .proceed a.modal-close {
    display: block;
    margin: 10px auto 0;
    width: 100px;
    text-align: center;
    font-weight: 700;
    color: #666;
    font-size: 11px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: .1s opacity 0s
}

.uid-popup .proceed a.modal-close,.user-login a {
    -webkit-transition: .1s opacity 0s;
    -moz-transition: .1s opacity 0s
}

.uid-popup .proceed>div {
    padding: 10px
}

.uid-popup .proceed>div>div {
    text-align: left;
    color: #2e2929
}

.uid-popup .proceed>div img {
    display: block;
    width: 100%;
    margin-bottom: 10px
}

@media ( min-width :768px) {
    .uid-popup .proceed>div {
        padding-top: 30px;
        padding-bottom: 30px
    }
    .uid-popup .proceed>div img {
        width: 200px;
        float: left
    }
    .uid-popup .proceed>div p {
        margin-left: 220px
    }
    .uid-popup .proceed>div a {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto
    }
}

