@charset "utf-8";
*,
*::after,
*::before {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    background-color: #fff;
    font-family: "Segoe UI",-apple-system,BlinkMacSystemFont,"Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-size: 1rem;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    word-wrap: break-word;
    text-rendering: optimizeSpeed;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
    overflow-y: scroll;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: none;
    outline: 0 none;
}
img:not([data-src]) {
    -webkit-animation: fadeInImages 1s ease;
    -moz-animation: fadeInImages 1s ease;
    animation: fadeInImages 1s ease;
}
@keyframes fadeInImages {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    outline: none;
}
button, label, textarea, input, select {
    outline: none;
    font: inherit;
    line-height: 1;
    margin: 0;
    padding: 0;
    box-shadow: none;
    vertical-align: baseline;
    color: inherit;
    border-radius: 5px;
}
select, textarea, input {
    border: 1px solid #c5cae9;
    padding: .25rem;
    font-size: .9em;
}
input[type="checkbox"] {
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #ccc;
    width: 16px;
    height: 16px;
    border-radius: .25em;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input:checked[type="checkbox"] {
    background-color: #377dff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
    border-color: #377dff;
}
iframe {
    width: 100%;
    max-width: 100%;
    border: 0;
    margin: 0;
    padding: 0;
    outline: none;
}
figure {
    position: relative;
    margin: 0;
    overflow: hidden;
}
button {
    cursor: pointer;
    background-color: transparent;
    border-width: 0;
}
input[type="submit"], input[type="reset"], button[type="submit"], button[type="button"] {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
h1, h2, h3, h4, h5, h6, p, ul, ol {
    margin-top: 0;
}
ins, del {
    font-weight: normal;
}
ins {
    text-decoration: none;
}
del {
    margin-left: 0.625rem;
    color: #777;
    opacity: .7;
}
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: inherit;
}
td, th {
    text-align: center;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left !important;
}
.uppercase {
    text-transform: uppercase;
}
.price {
    color: #f00;
}
.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.container {
    position: relative;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.container.flex {
    flex-wrap: wrap;
}
.nowrap {
    white-space: nowrap;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}