.elasten {
    min-height: 100vh;
    width: 100vw;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Lato', sans-serif;
}
.elasten .mt-25 {
    margin-top: 25px;
}
.elasten .mt-75 {
    margin-top: 75px;
}
.elasten .header {
    background-color: #aa2449;
    height: 30px;
}
.elasten .header .language {
    float: right;
    margin: 5px;
}
.elasten .header .language a {
    color: #fff;
    margin: 5px;
    text-decoration: none;
}
.elasten .main {
    background-color: #ececec;
    height: 100%;
    flex: 1;
}

.elasten .header_logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin: 15px;
    text-align: center;
}

.elasten .content,
.elasten .instruction_content {
    display: block;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    margin-top: 30px;
    padding: 20px;
}
.elasten .content h1,
.elasten .instruction_content h1 {
    font-weight: 400;
}

.elasten .elasten_color {
    color: #aa2449;
}

.elasten .content h2 {
    font-weight: 400;
}
.elasten .row {
    display: flex;
}
.elasten .column {
    flex: 50%;
    padding: 5px;
}
.elasten ul.no-bullets {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.elasten ul.no-bullets li {
    margin-top: 10px;
}
.elasten ul.no-bullets li span {
    margin-right: 5px;
    font-weight: 600
}

@media screen and (max-width: 500px) {
    .elasten .row {
        flex-direction: column;
    }

    .elasten .column {
        margin-left: 10px;
        margin-right: 10px;
    }
}

h2.warning {
    font-weight: 400;
}

.elasten_des {
    line-height: 1.5;
    font-weight: 400;
}

ul.elasten_check {
    text-align: left;
}

ul.elasten_check>li {
    margin-top: 10px;
}

.elasten .elasten_search {
    margin-top: 30px;
}

.scan_fail {
    color: #dc3545;
}
.scan_success {
    color: #198754;
}

/* http://shipow.github.io/searchbox/ */
.sbx-custom {
    display: inline-block;
    position: relative;
    width: 300px;
    height: 51px;
    white-space: nowrap;
    box-sizing: border-box;
    font-size: 14px;
}

.sbx-custom__wrapper {
    width: 100%;
    height: 100%;
}

.sbx-custom__input {
    display: inline-block;
    -webkit-transition: box-shadow .4s ease, background .4s ease;
    transition: box-shadow .4s ease, background .4s ease;
    border: 0;
    border-radius: 26px;
    box-shadow: inset 0 0 0 2px #AA2449;
    background: #FFFFFF;
    padding: 0;
    padding-right: 78px;
    padding-left: 22px;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    white-space: normal;
    font-size: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.sbx-custom__input::-webkit-search-decoration,
.sbx-custom__input::-webkit-search-cancel-button,
.sbx-custom__input::-webkit-search-results-button,
.sbx-custom__input::-webkit-search-results-decoration {
    display: none;
}

.sbx-custom__input:hover {
    box-shadow: inset 0 0 0 2px #801b37;
}

.sbx-custom__input:focus,
.sbx-custom__input:active {
    outline: 0;
    box-shadow: inset 0 0 0 2px #AA2449;
    background: #FFFFFF;
}

.sbx-custom__input::-webkit-input-placeholder {
    color: #2D2D2D;
}

.sbx-custom__input::-moz-placeholder {
    color: #2D2D2D;
}

.sbx-custom__input:-ms-input-placeholder {
    color: #2D2D2D;
}

.sbx-custom__input::placeholder {
    color: #2D2D2D;
}

.sbx-custom__submit {
    position: absolute;
    top: 0;
    right: 0;
    left: inherit;
    margin: 0;
    border: 0;
    border-radius: 0 25px 25px 0;
    background-color: rgba(255, 255, 255, 0);
    padding: 0;
    width: 51px;
    height: 100%;
    vertical-align: middle;
    text-align: center;
    font-size: inherit;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.sbx-custom__submit::before {
    display: inline-block;
    margin-right: -4px;
    height: 100%;
    vertical-align: middle;
    content: '';
}

.sbx-custom__submit:hover,
.sbx-custom__submit:active {
    cursor: pointer;
}

.sbx-custom__submit:focus {
    outline: 0;
}

.sbx-custom__submit svg {
    width: 31px;
    height: 31px;
    vertical-align: middle;
    fill: #AA2449;
}

.sbx-custom__reset {
    display: none;
    position: absolute;
    top: 12px;
    right: 51px;
    margin: 0;
    border: 0;
    background: none;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    fill: rgba(0, 0, 0, 0.5);
}

.sbx-custom__reset:focus {
    outline: 0;
}

.sbx-custom__reset svg {
    display: block;
    margin: 4px;
    width: 19px;
    height: 19px;
}

.sbx-custom__input:valid~.sbx-custom__reset {
    display: block;
    -webkit-animation-name: sbx-reset-in;
    animation-name: sbx-reset-in;
    -webkit-animation-duration: .15s;
    animation-duration: .15s;
}

@-webkit-keyframes sbx-reset-in {
    0% {
        -webkit-transform: translate3d(-20%, 0, 0);
        transform: translate3d(-20%, 0, 0);
        opacity: 0;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes sbx-reset-in {
    0% {
        -webkit-transform: translate3d(-20%, 0, 0);
        transform: translate3d(-20%, 0, 0);
        opacity: 0;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.button_action_register, .search_code {
    background-color: #AA2449;
    border-radius: 28px;
    border: 1px solid #AA2449;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 17px;
    padding: 10px 70px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #AA2449;
    margin-top: 20px;
}

.button_action_register, .search_code:hover {
    background-color: #AA2449;
}

.button_action_register, .search_code:active {
    position: relative;
    top: 1px;
}

.elasten .footer {
    background-color: #2d2d2d;
    color: #fff;
}

.elasten .footer h4 {
    margin: 15px;
    font-weight: 300;
}
.elasten .footer h4 a {
    text-decoration: none;
    color: #fff;
}

/* lato-300 - latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    src: local(''),
         url('/website_elasten/static/src/fonts/lato-v17-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('../fonts/lato-v17-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* lato-regular - latin */
  @font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: local(''),
         url('/website_elasten/static/src/fonts/lato-v17-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('/website_elasten/static/src/fonts/lato-v17-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* lato-700 - latin */
  @font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: local(''),
         url('/website_elasten/static/src/fonts/lato-v17-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('/website_elasten/static/src/fonts/lato-v17-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }