/* anti-copy / anti-download protection patch
   기존 레이아웃, 효과, 위치는 건드리지 않음 */

html,
body,
body *:not(input):not(textarea):not(select):not(option){
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  -webkit-touch-callout:none;
}

img,
picture,
svg,
canvas,
video{
  -webkit-user-drag:none;
  user-drag:none;
  -webkit-touch-callout:none;
  pointer-events:none;
}

input,
textarea,
select,
option,
button,
a,
label{
  -webkit-touch-callout:none;
}

input,
textarea,
select,
option{
  -webkit-user-select:text;
  -moz-user-select:text;
  -ms-user-select:text;
  user-select:text;
}
