/*reset*/
*, :before, :after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    -webkit-tap-highlight-color: transparent;
}
a {
    text-decoration: none;
    color: inherit;
}
ul, li, ol > li > ol, ol > li > ul, ul > li > ol, ul > li > ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}
a:visited, a:active {
    color: inherit;
}
.wrapped {
    max-width: 1000px;
    margin: 0 auto;
}
p, * + p {
    margin: 0;
    line-height: 1;
}
img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.clearfix {
    *zoom: 1;
}
.clearfix:after {
    content: '';
    display: block;
    clear: both;
}
.am-fl {
    float: left;
}
.am-fr {
    float: right;
}
.am-btn.am-disabled, .am-btn[disabled], fieldset[disabled] .am-btn, .am-disabled, .disabled {
    pointer-events: none;
    border-color: transparent;
    cursor: not-allowed;
    opacity: .45;
    box-shadow: none;
}
.img--wrapper {
    position: relative;
}
.svgIcon {
    width: 1.2em;
    height: 1.2em;
    vertical-align: -0.18em;
    fill: currentColor;
    overflow: hidden;
    margin-right: 0.2em;
}
/*alert*/
.my_alert {
    padding: 30px 50px;
    position: fixed;
    text-align: center;
    font-size: 20px;
    color: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: none;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1111;
}