/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps__rail-x:hover,
.ps__rail-y:hover,
.ps__rail-x:focus,
.ps__rail-y:focus {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

.swal2-modal{font-size: 14px !important;;}

.confirmstate{cursor:pointer;}

.logoimg{position:absolute;left:30px;top:30px;z-index:1}

#examfooter{position:fixed;left:0;bottom:0;width:100%;padding:5px 0;background-color:#fff;box-shadow:0px 4px 50px 0px rgba(41,69,99,0.08);display:flex;gap:15px;}
    .questionnav{padding:8px 10px;border:1px solid #efefef;cursor:pointer;border-radius:10px;}
      .questionnav i{font-size:14px;color:#555}

    .questionnav.cur{border-color:#999;}
      .questionnav.cur i{display:none;}
      .questionnav.cur ul,.questionnav li{display:inline-block;}
      .questionnav.cur .mr-1 b,.questionnav.cur .status{display:none;}
      .questionnav code{color:#555}
      
    .questionnav ul{display:none}
      .questionnav li{margin-left:3px;font-family:"Montserrat",Helvetica,Arial,sans-serif;}
      .questionnav li.wrong span{background-color:#f8222e;border-color:#f8222e;color:#fff}
      .questionnav li.right span{background-color:#0ecb96;border-color:#0ecb96;color:#fff}
      .questionnav li.done span{background-color:#107fff;border-color:#107fff;color:#fff}
          .questionnav h6{display:inline-block}
          .questionnav span{cursor:pointer;display:flex;border:solid 1px #efefef;justify-content:center;align-items:center;width:30px;height:30px;line-height:30px;border-radius:50%;color:#21252A}
          .questionnav span:hover,.questionnav li.curent span{border-color:#f5a623;}

    #arrow{position:absolute;right:1rem;top:6px;display:none}   
      .arrowleft,.arrowright{cursor:pointer;display:inline-block;width:46px;height:46px;background-image:url(../imgs/icon-arrow.png);background-position:0 0;}
      .arrowleft.unable{background-position:0 -46px;}
      .arrowright{background-position:-46px 0;}
      .arrowright.unable{background-position:-46px -46px;}   

#page{margin-top:30px;}
  #page font{color:#f5a623;font-weight:bold;}
#pagecombo{width:auto;display:inline;}

@media(min-width:1160px){
  #arrow{display:block}
}