[v-cloak] {
  opacity: 0;
}

*:hover {
  transition: all 0.3s;
}

html,
body,
div,
span,
applet,
object,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /*font: inherit;*/
  font-weight: normal;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  vertical-align: middle;
}

/* custom */
a {
  outline: none;
  color: #333;
  text-decoration: none;
  -webkit-backface-visibility: hidden;
}

a:focus {
  outline: none;
}

input { 
  border: none;
  outline: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: -webkit-focus-ring-color auto 0;
}

.row-around {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.row-round {
  display: flex;
  justify-content: space-around;
}

.row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.row-between-noc {
  display: flex;
  justify-content: space-between;
}

.row-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.row-start {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.row-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.column-start {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.column-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.column-end {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.column-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

.line {
  width: 100%;
  height: 1px;
  background-color: #eee;
}

.clearfix:after,.clearfix:before{
  content: "";
  display: table;
}
.clearfix:after{
  clear: both;
}
.clearfix{
  *zoom: 1;
}
/*::-webkit-scrollbar {display: none;}*/
/* ipad */
@media screen and (max-width: 768px) {
  .container {
    width: 680px;
    margin: 0 auto;
  }
}

/* iphone */
@media screen and (max-width: 414px) {
  .container {
    width: 350px;
    margin: 0 auto;
  }
}