/* Design system
--------------------------------------------- */
:root{
	--an-black: #1C1C1C;
	--an-white: #ffffff;
	--an-white80: rgba(255, 255, 255, 0.8);
	--an-gray: #F3F3F3;
	--an-gray2: #A8A8A8;
    --an-new-gray: #FCFCFC;
	--an-green: #69F532;
	--an-dim: rgba(0, 0, 0, 0.3);
	--an-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.10);
	--an-blur: blur(2.5px);
}

/* Typography
--------------------------------------------- */
*{
	font-family: "Gothic A1", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-optical-sizing: auto;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
}

/* Common Style */
*:not(.titleListWrapper){
    -ms-overflow-style: none;
    scrollbar-width: none;
}
::-webkit-scrollbar:not(.titleListWrapper) {
    display: none;
}

img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}