:root { --fontColor: #515151; --mainWidth: 1000px; --mainColor: #0093fd; --linkColor: #308EFF; font-size: 14px; } html, body, div, span, applet, object, iframe, blockquote, pre, 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; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } a { color: var(--linkColor); text-decoration: none; } body { line-height: 1; background: #F4F5F9; } ol, ul { 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; } input { outline: none; border: 0; } button { border: 0; padding: 0; margin: 0; background: transparent; outline: none; cursor: pointer; } sub { font-size: .6em; } img { max-width: 100%; } .flex{ display: flex; } .flex-column{ display: flex; flex-direction: column; } .space-between{ display: flex; justify-content: space-between; } .space-around{ display: flex; justify-content: space-around; } .align-center{ display: flex; align-items: center; } .align-center-c{ display: flex; flex-direction: column; align-items: center; } .justify-center{ display: flex; justify-content: center; } .justify-center-c{ display: flex; flex-direction: column; justify-content: center; } .justify-between{ display: flex; justify-content: space-between; } .margin-0-auto{ margin:0 auto; } .inline-block{ display: inline-block; } .gray-153{ color:rgb(153,153,153); } .gray-34{ color:rgb(34,34,34); } .gray-51{ color:rgb(51,51,51); } .text-center{ text-align: center; }