@charset "utf-8";

/*------------------------------------------------------------------

[Table of contents]

1. Global
2. a tag/Pseudo/img Classes
3. Heading tag/p tag
4. Form/table
5. Button
6. Common Class
/*-------------------------------------------------------------------*/

/* 1. Global */
* { 
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	font-family: 'Artifakt Element', Helvetica, Arial, sans-serif;
}
body { 
	font-family: 'Artifakt Element', Helvetica, Arial, sans-serif;
	font-size: 16px; 
	line-height: 1.2; 
	padding: 0;
    margin: 0;
    background-color: #fff;
    font-weight: 400;
    letter-spacing: normal;
	scroll-behavior: smooth;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
	color: #222222;
}

/* 2. a tag/Pseudo/img Classes */
img { 
	max-width: 100%; 
	border: 0; 
	height: auto; 
	outline: none; 
	max-height: 100%;
}
a { 
	text-decoration: none; 
	cursor: pointer; 
	color: #222222;
}
a:hover , a:active, a:focus{
	text-decoration: underline;
}
:focus-visible, a:focus-visible, img:focus-visible {
    outline: none;
}
:focus {
	outline: none;  /* or set as par your theme */
}

/* 3. heading tag/p tag */
h1, h2, h3, h4, h5, h6, p, span { 
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
	color: #222222;
	font-weight: 700;
	line-height: 1.2;
}
h1, h2, h3, h4, h5, h6, p, span, label, ul, ol {
	font-family: 'Artifakt Element', Helvetica, Arial, sans-serif;
}

/* 4. Form/table  */
form {
	margin: 0; 
	padding: 0; 
	border: 0;
	border-radius: 0;
}
select , input[type="submit"] {
	cursor: pointer;
}
button, input, select, textarea , form, table, label{
	font-family: 'Artifakt Element', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 20px;
    outline: none;
}
/*placeholder color change */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
color: #222222; }
::-moz-placeholder { /* Firefox 19+ */
color: #222222; }
:-ms-input-placeholder { /* IE 10+ */
color: #222222; }

/* 5. Button */
button , input[type="submit"], .btn, .button{
	border:0;
	background-color: #000000;
	color: #fff;
	padding: 15px 20px;
	text-align: center;
    transition: all 0.3s ease-in;
    cursor: pointer;
	margin-bottom: 20px;
	display: block;
	text-decoration: none;
	border: 2px solid #000000;
}
button:hover, input[type="submit"]:hover, .btn:hover, .button:hover {
    transition: all 0.3s ease-in;
	background-color: transparent;
	color: #000000;
	text-decoration: none;
}

/* 6. Common Class css */
.list_none {
	list-style-type: none;
}
.appearance-none {
	-webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
}
.m-0 {
	margin: 0;
}
.p-0 {
	padding: 0;
}
.pt-0 {
	padding-top: 0;
}
.pb-0 {
	padding-bottom: 0;
}
.pl-0 {
	padding-left: 0;
}
.pr-0 {
	padding-right: 0;
}
.mt-0 {
	margin-top: 0;
}
.mb-0 {
	margin-bottom: 0;
}
.ml-0 {
	margin-left: 0;
}
.mr-0 {
	margin-right: 0;
}
.m-20 {
	margin: 20px;
}
.p-20 {
	padding: 20px;
}