html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

ul[class] {
  list-style: none;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
}

:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

input:active, input:hover, input:focus {
  outline: 0;
  outline-offset: 0;
}

/*Шаблоны*/
.df{
  display: flex;
}
.jcsb{
  justify-content: space-between;
}
.jcc{
  justify-content: center;
}
.jcs{
  justify-content: start;
}
.fdc{
  flex-direction: column;
}
.aic{
  align-items: center;
}
.fww{
  flex-wrap: wrap;
}
.ais{
  align-items: start;
}
.uscp{
  user-select: none;
  cursor: pointer;
}
.pdmr{
  padding: 0px 20px;
  margin: 0px auto;
}
/*-----------------------------------------------*/