@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR:300,400,500,700');

:root {
  --rep-color : rgb(240,131,0);
}

html, body {
  width: 100%;
  height: 100%;
}


*{
  font-family: 'Noto Sans KR', sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -ms-overflow-style: none; // IE에서 스크롤바 감춤
}

*:focus{
   outline: none;
}

::-webkit-scrollbar {
    display: none;
}
*::-webkit-scrollbar {
    display: none;
}

a{
  cursor: pointer;
}

a,
a:visited,
a:link,
a:active,
a:hover{
   text-decoration: none;
   color: #000000;
}

label {
  margin: 0;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.Sliding_Middle_Out {
  display: block;
  margin: auto;
  height: 2px;
  width: 0px;
  background: transparent;
  transition: width .3s ease, background-color .3s ease;
}

.Sliding_Middle_Out.active {
  width: 60%;
  background: #910039;
}

.clear{
  clear: both;
}

.VerticalLine_R {
  border-right: 1px #e8e8e8 solid;
}

.MainContainerDiv{
  width: 100%;
  min-height: calc(100% - 50px);
  padding-top: 60px;
  padding-bottom: 30px;
}

.not_scroll{
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%
}

@media only screen and (min-width:768px) {
  .MainContainerDiv{
    min-height: calc(100% - 80px);
    padding-top: 100px;
    padding-bottom: 50px;
  }
}




[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    line-height: 18px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    height: 17px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 11px;
    height: 11px;
    background: #0080cc;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.hide {
  display: none;
}
