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

/* Hide scroll bar */

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

  touch-action: none;
}

/* Anti FOUC */

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

/* Necessary styles of the overlay */

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

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 999999;
  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;
}

/*추가*/
.remodal_checkbox {position:absolute;top:0;left:0}
.remodal_checkbox input[type="checkbox"] + label {color:#676e70}
.remodal_checkbox input[type="checkbox"] + label:hover {color:#2172f8}
.remodal_checkbox input[type="checkbox"] + label span {position:absolute;top:0;left:0;width: 1.5rem;height: 1.5rem;display:block;background:url('56cbfa249b04efd2a7211c4c66aadcb248b187c0.png') no-repeat 50% 50%;border: 1px solid #888;border-radius: 100%;transition:all 0.3s;cursor:pointer;}
.remodal_checkbox input[type="checkbox"]:checked + label {color:#000}
.remodal_checkbox input[type="checkbox"]:checked + label span {background:url('56cbfa249b04efd2a7211c4c66aadcb248b187c0.png') no-repeat 50% 50% #1454FF;border-color:#1454FF;border-radius: 100%;}
.remodal_st2_section > li > p {padding-left: 38px;}
.remodal_st2_section .confirm{background: #343644;color: #fff;margin-right:1rem;}
.remodal_st2_section .cancel{border-color:rgba(97,102,118,.3);box-shadow:0px 0px 10px 0px rgba(0,0,0,0.05);}



