@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes draw-stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes draw-stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes bump {
    0%,100% {
        -webkit-transform: none;
        transform: none;
    }

    50% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes bump {
    0%,100% {
        -webkit-transform: none;
        transform: none;
    }

    50% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }
}

@-webkit-keyframes checkmark-fill {
    100% {
        -webkit-box-shadow: inset 0 0 0 30px #1990c6;
        box-shadow: inset 0 0 0 30px #1990c6;
    }
}

@keyframes checkmark-fill {
    100% {
        -webkit-box-shadow: inset 0 0 0 30px #1990c6;
        box-shadow: inset 0 0 0 30px #1990c6;
    }
}

@-webkit-keyframes scale-up-bounce {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    40% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale-up-bounce {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    40% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes scale-up-bounce-spring {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    20% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale-up-bounce-spring {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    20% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes scale-down-bounce {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    20% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

@keyframes scale-down-bounce {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    20% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

@-webkit-keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(25,144,198,0.5);
        box-shadow: 0 0 0 0 rgba(25,144,198,0.5);
    }

    50% {
        -webkit-box-shadow: 0 0 0 15px rgba(25,144,198,0);
        box-shadow: 0 0 0 15px rgba(25,144,198,0);
    }
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(25,144,198,0.5);
        box-shadow: 0 0 0 0 rgba(25,144,198,0.5);
    }

    50% {
        -webkit-box-shadow: 0 0 0 15px rgba(25,144,198,0);
        box-shadow: 0 0 0 15px rgba(25,144,198,0);
    }
}

@-webkit-keyframes fade-in-from-bottom {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-from-bottom {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes fade-out-to-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        opacity: 0;
    }
}

@keyframes fade-out-to-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        opacity: 0;
    }
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: rotate(6deg);
        transform: rotate(6deg);
    }

    50% {
        -webkit-transform: rotate(-6deg);
        transform: rotate(-6deg);
    }

    100% {
        -webkit-transform: rotate(6deg);
        transform: rotate(6deg);
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: rotate(6deg);
        transform: rotate(6deg);
    }

    50% {
        -webkit-transform: rotate(-6deg);
        transform: rotate(-6deg);
    }

    100% {
        -webkit-transform: rotate(6deg);
        transform: rotate(6deg);
    }
}

@-webkit-keyframes modal-open {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        visibility: visible;
    }
}

@keyframes modal-open {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        visibility: visible;
    }
}

@-webkit-keyframes modal-close {
    0% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
    }
}

@keyframes modal-close {
    0% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
    }
}

@media (max-width: 999px) {
    .quirks-fix--ios-instagram {
        height: auto;
        min-height: 100%;
        padding-bottom: 250px;
    }
}

html, body {
    margin: 0;
    width: 100%;
    height: 100%;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
}

b, strong {
    font-weight: 500;
}

small {
    font-size: .875em;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin: 0;
    line-height: 1em;
}

sub, sup {
    font-size: .75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

img {
    border: 0;
    max-width: 100%;
}

figure {
    margin: 0;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

form {
    margin: 0;
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -webkit-font-smoothing: inherit;
    border: none;
    background: transparent;
    line-height: normal;
}

button {
    overflow: visible;
}

button, select {
    -moz-appearance: none;
    text-transform: none;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled], input[disabled] {
    cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input[type="checkbox"], input[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1em;
    line-height: 1.45;
    color: #4d4d4d;
}

td, th {
    padding: 0;
    font-weight: normal;
}
table.info tr td{padding-top:3px;padding-bottom:3px;}
table.info tr td:first-child{width:90px;}
table.info tr td b span.dot{float:right;}
body {
    font-size: 14px;
    font-family: Helvetica Neue, sans-serif;
    line-height: 1.3em;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    -webkit-font-smoothing: subpixel-antialiased;
}

a, .link {
    text-decoration: none;
    color: #1990c6;
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}

a:hover, .link:hover {
    color: #1579a6;
}

.link--muted {
    color: inherit;
    text-decoration: underline;
}

h1 {
    font-family: Helvetica Neue, sans-serif;
    font-size: 1.71429em;
}

@media (min-width: 750px) {
    h1 {
        font-size: 2em;
    }
}

h2 {
    font-family: Helvetica Neue, sans-serif;
    font-size: 1.28571em;
}

.main h2 {
    color: #333333;
}

.sidebar h2 {
    color: #323232;
}

.content-box h2 {
    color: #333333;
}

.default-background h2 {
    color: #333333;
}

h3 {
    font-family: Helvetica Neue, sans-serif;
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 0.57143em;
}

.main h3 {
    color: #4d4d4d;
}

.sidebar h3 {
    color: #4b4b4b;
}

.content-box h3 {
    color: #4d4d4d;
}

.default-background h3 {
    color: #4d4d4d;
}

h3:not(:first-child) {
    margin-top: 1.5em;
}

p {
    margin: 0;
    line-height: 1.5em;
}

p + p {
    margin-top: 1.5em;
}

.emphasis {
    font-weight: 500;
}

.main .emphasis {
    color: #4d4d4d;
}

.sidebar .emphasis {
    color: #4b4b4b;
}

.content-box .emphasis {
    color: #4d4d4d;
}

.default-background .emphasis {
    color: #4d4d4d;
}

.main .small-text .emphasis {
    color: #737373;
}

.sidebar .small-text .emphasis {
    color: #717171;
}

.content-box .small-text .emphasis {
    color: #737373;
}

.default-background .small-text .emphasis {
    color: #737373;
}

.small-text {
    font-size: 0.85714em;
}

.main .small-text {
    color: #999999;
}

.sidebar .small-text {
    color: #969696;
}

.content-box .small-text {
    color: #999999;
}

.default-background .small-text {
    color: #999999;
}

.layout-flex {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: -0.28571em;
}

.layout-flex--wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.layout-flex--tight-vertical {
    margin-bottom: -0.14286em;
    margin-top: -0.14286em;
}

.layout-flex--tight-vertical .layout-flex__item {
    padding-bottom: 0.14286em;
    padding-top: 0.14286em;
}

.layout-flex--loose-horizontal {
    margin-left: -0.57143em;
    margin-right: -0.57143em;
}

.layout-flex--loose-horizontal .layout-flex__item {
    padding-left: 0.57143em;
    padding-right: 0.57143em;
}

.layout-flex__item {
    padding: 0.14286em;
}

.layout-flex__item--stretch {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.icon-svg {
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
}

.icon-svg--color-accent {
    color: #1990c6;
    fill: currentColor;
}

.icon-svg--size-10 {
    width: 10px;
    height: 10px;
}

.icon-svg--size-18 {
    width: 18px;
    height: 18px;
}

.icon-svg--size-24 {
    width: 24px;
    height: 24px;
}

.icon-svg--size-32 {
    width: 32px;
    height: 32px;
}

.icon-svg--size-64 {
    width: 64px;
    height: 64px;
}

[dir=rtl] .rtl-flip {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.icon {
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
}

.icon--clear {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}



.icon--close-modal:hover, .icon--close-modal:focus {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
}



.icon--dropdown--is-flipped {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}



.icon--spinner {
    fill: #1990c6;
    -webkit-animation: fade-in 0.5s ease-in-out, rotate 0.5s linear infinite;
    animation: fade-in 0.5s ease-in-out, rotate 0.5s linear infinite;
}

.icon--double-spinner .icon--double-spinner__circle {
    -webkit-transform-origin: center;
    transform-origin: center;
    fill: #1990c6;
}

.icon--double-spinner .icon--double-spinner__outer-circle {
    opacity: 0.3;
    animation: rotate 1s linear infinite reverse;
}

.icon--double-spinner .icon--double-spinner__inner-circle {
    -webkit-animation: rotate 0.5s linear infinite;
    animation: rotate 0.5s linear infinite;
}

.ie .icon--double-spinner, .edge .icon--double-spinner {
    -webkit-animation: rotate 0.5s linear infinite;
    animation: rotate 0.5s linear infinite;
}

.ie .icon--double-spinner .icon--double-spinner__outer-circle, .edge .icon--double-spinner .icon--double-spinner__outer-circle {
    display: none;
}

.ie .icon--double-spinner .icon--double-spinner__inner-circle, .edge .icon--double-spinner .icon--double-spinner__inner-circle {
    -webkit-animation: none;
    animation: none;
}

.icon--mobile-phone {
    opacity: 0.3;
}

.logo {
    display: block;
    vertical-align: middle;
}

.logo__text {
    color: #333333;
    font-weight: bold;
}

.logo__image {
    display: inline-block;
}

.logo--right {
    text-align: right;
}

.logo--center {
    text-align: center;
}

.logo__image--small {
    max-height: 2.14286em;
}

.logo__image--medium {
    max-height: 2.85714em;
}

.logo__image--large {
    max-height: 3.57143em;
}

@media (min-width: 1000px) {
    .logo__image--small {
        max-height: 2.85714em;
    }

    .logo__image--medium {
        max-height: 4.28571em;
    }

    .logo__image--large {
        max-height: 5.71429em;
    }
}

body {
    color: #737373;
    background: white;
}

.wrap {
    margin: 0 auto;
    max-width: 40em;
    zoom: 1;
}

.wrap:after, .wrap:before {
    content: "";
    display: table;
}

.wrap:after {
    clear: both;
}

@media (max-width: 999px) {
    .wrap {
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 1em;
    }
}

@media (min-width: 1000px) {
    .wrap {
        padding: 0 5%;
        width: 90%;
        max-width: 78.57143em;
    }
}
.content {
    overflow: hidden;
}
.header{
    text-align: center;
    padding: 18px;
    background: #f2ba33;
    font-size: 21px;
    font-weight: 700;
    font-family: tahoma, sans-serif;
    color: #111;
    background: linear-gradient(to right, #f2ba33 0%, #f5d076 35%, #e6af2b 100%);
}
.header a{
    color:#111;
    background: -webkit-linear-gradient(#686868,#1d1e1d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.header a:hover{color:#222;}
@media (min-width: 1000px) {
    .main {
        width: 50%;
        padding-right: 4%;
        float: left;
    }
}

.main .logo {
    display: none;
}

@media (min-width: 1000px) {
    .page--logo-main .main .logo {
        display: block;
    }
}

.main__emphasis {
    font-weight: 500;
    color: #4d4d4d;
}

.main__small-text {
    font-size: 0.85714em;
    color: #999999;
}

.sidebar {
    position: relative;
    color: #717171;
}

.no-js .sidebar, .no-generatedcontent .sidebar {
    background: #fafafa;
}

@media (min-width: 1000px) {
    .sidebar {
        width: 44%;
        padding-left: 2%;
        background-position: left top;
        float: right;
    }
}

.sidebar:after {
    content: "";
    display: block;
    width: 300%;
    position: absolute;
    top: 0;
    left: -100%;
    bottom: 0;
    background: #fafafa;
    z-index: -1;
    -webkit-box-shadow: 0 -1px 0 #e1e1e1 inset;
    box-shadow: 0 -1px 0 #e1e1e1 inset;
}

@media (min-width: 1000px) {
    .sidebar:after {
        left: 0;
        background-position: left top;
        -webkit-box-shadow: 1px 0 0 #e1e1e1 inset;
        box-shadow: 1px 0 0 #e1e1e1 inset;
    }
}

.sidebar__header {
    margin-bottom: 2.5em;
    display: none;
}

@media (min-width: 1000px) {
    .page--logo-sidebar .sidebar__header {
        display: block;
    }
}

.anyflexbox body, .anyflexbox .content, .anyflexbox .content .wrap, .anyflexbox .main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.anyflexbox .main__content {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.anyflexbox .banner {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (min-width: 1000px) {
    .anyflexbox .content .wrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
}

@media (max-width: 749px) {
    .main {
        padding-top: 1.5em;
    }

    .main__content {
        padding-bottom: 1.5em;
    }
}

@media (min-width: 750px) {
    .main {
        padding-top: 1.5em;
    }

    .main__content {
        padding-bottom: 4em;
        margin-top: 10px;
    }
}

@media (min-width: 1000px) {
    .page--no-banner .main, .page--no-banner .sidebar {
        padding-top: 4em;
    }

    .page--banner .main, .page--banner .sidebar {
        padding-top: 2em;
    }

    .main__header {
        padding-bottom: 2em;
    }

    .sidebar__logo {
        margin-bottom: 2em;
    }

    .page--logo-main .breadcrumb {
        margin-top: 1em;
    }
}

.page--hidden-breadcrumbs .breadcrumb, .page--hidden-main-header .main__header {
    display: none;
}

table {
    width: 100%;
}

td, th {
    padding-left: 1em;
}

td:first-child, th:first-child {
    padding-left: 0;
    text-align: left;
}

/*td:last-child, th:last-child {
    text-align: right;
}*/

.banner {
    padding: 1.5em 0;
    background: transparent;
    background-size: cover;
    display: none;
    background-color: #fafafa;
}

.banner .banner {
    display: block;
}

.page--logo-sidebar .banner {
    background: transparent;
}

@media (max-width: 999px) {
    .banner {
        display: block;
    }
}

.page--banner .banner {
    display: block;
}

@media (min-width: 1000px) {
    .page--banner .banner {
        padding-top: 6em;
        padding-bottom: 2em;
    }
}

.btn, .btn-secondary {
    display: inline-block;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    position: relative;
    -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}

.boxshadow .btn:focus, .boxshadow .btn:active, .boxshadow .btn-secondary:focus, .boxshadow .btn-secondary:active {
    -webkit-box-shadow: 0 0 0 2px #136f99 inset;
    box-shadow: 0 0 0 2px #136f99 inset;
    outline: none;
}

.btn {
    font-weight: 500;
    padding: 1.4em 1.7em;
    background: #1990c6;
    color: white;
}

.btn:hover {
    background: #136f99;
    color: white;
}

@media (max-width: 749px) {
    .btn {
        width: 100%;
        padding-top: 1.75em;
        padding-bottom: 1.75em;
    }
}

.btn-secondary {
    color: #1990c6;
    padding: 0.7em 0.85em;
}

.no-js .btn-secondary, .no-boxshadow .btn-secondary {
    border: 1px solid rgba(179,179,179,0.5);
}

.boxshadow .btn-secondary {
    -webkit-box-shadow: 0 0 0 1px rgba(179,179,179,0.5) inset;
    box-shadow: 0 0 0 1px rgba(179,179,179,0.5) inset;
}

.btn-secondary:hover {
    color: #1579a6;
    background-color: rgba(25,144,198,0.06);
}

@media (max-width: 749px) {
    .btn-secondary {
        width: 100%;
        padding-top: 0.9em;
        padding-bottom: 0.9em;
    }
}

.btn__content {
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.btn--loading .btn__content {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.btn__icon + .btn__content {
    vertical-align: middle;
}

.btn__icon {
    margin-right: 0.28571em;
}

.btn--loading {
    pointer-events: none;
    cursor: default;
}

.btn__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.btn--loading .btn__spinner {
    -webkit-animation: rotate 0.5s linear infinite;
    animation: rotate 0.5s linear infinite;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

.js .main .btn--disabled {
    cursor: default;
    background: #cccccc;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.js .sidebar .btn--disabled {
    cursor: default;
    background: #c8c8c8;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.js .content-box .btn--disabled {
    cursor: default;
    background: #cccccc;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.js .default-background .btn--disabled {
    cursor: default;
    background: #cccccc;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.step__footer {
    z-index: 2;
    position: relative;
    margin-top: 1em;
}

.no-js .step__footer, .no-anyflexbox .step__footer {
    zoom: 1;
}

.no-js .step__footer:after, .no-js .step__footer:before, .no-anyflexbox .step__footer:after, .no-anyflexbox .step__footer:before {
    content: "";
    display: table;
}

.no-js .step__footer:after, .no-anyflexbox .step__footer:after {
    clear: both;
}

@media (min-width: 750px) {
    .step__footer {
        margin-top: 1.5em;
    }
}

.step__footer__previous-link-content {
    vertical-align: middle;
}

.step__footer__previous-link, .step__footer__info {
    display: block;
}

@media (max-width: 749px) {
    .step__footer__previous-link, .step__footer__info {
        padding-top: 1.5em;
        text-align: center;
    }
}

@media (min-width: 750px) {
    .step__footer__previous-link, .step__footer__info {
        float: left;
    }
}

.step__footer__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 749px) {
    .step__footer__info {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.previous-link__icon {
    -webkit-transition: all 0.2s cubic-bezier(0.3, 0, 0, 1);
    transition: all 0.2s cubic-bezier(0.3, 0, 0, 1);
    margin-right: 0.25em;
}

.step__footer__previous-link:hover .previous-link__icon {
    fill: #1579a6;
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
}

@media (min-width: 750px) {
    .step__footer__continue-btn {
        float: right;
    }
}

@media (min-width: 750px) {
    .anyflexbox .step__footer {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .anyflexbox .step__footer__previous-link, .anyflexbox .step__footer__info {
        margin-right: 1em;
    }
}

.edit-link {
    display: block;
    margin-top: 0.75em;
}

.notice + .step__sections {
    margin-top: 1.5em;
}

@media (min-width: 750px) {
    .notice + .step__sections {
        margin-top: 2.5em;
    }
}

.step__sections + form {
    padding-top: 2em;
}

@media (min-width: 1000px) {
    .step__sections + form {
        padding-top: 0;
    }
}

.section {
    position: relative;
    padding-top: 2em;
}

@media (min-width: 750px) {
    .section {
        padding-top: 3em;
    }
}

.section:first-child {
    padding-top: 0;
}

.section--half-spacing-top, .section--half-spacing-bottom + .section {
    padding-top: 1em;
}

@media (min-width: 750px) {
    .section--half-spacing-top, .section--half-spacing-bottom + .section {
        padding-top: 1.5em;
    }
}

.section__header {
    position: relative;
    margin-bottom: 1em;
}

@media (min-width: 750px) {
    .section__header {
        margin-bottom: 1em;
    }
}

.section__title {
    color: #333333;
}

.section__text {
    margin-top: 0.25em;
}

.section__hanging-icon {
    margin-bottom: 1em;
}

@media (min-width: 750px) and (max-width: 999px) {
    .section__hanging-icon {
        position: absolute;
        right: 100%;
        top: -0.4em;
        margin-right: 1.5em;
    }
}

@media (min-width: 1300px) {
    .section__hanging-icon {
        position: absolute;
        right: 100%;
        top: -0.4em;
        margin-right: 1.5em;
    }
}

.section__content {
    zoom: 1;
}

.section__content:after, .section__content:before {
    content: "";
    display: table;
}

.section__content:after {
    clear: both;
}

.section__content__text {
    margin-top: 0.75em;
}

.section__content__policy {
    margin-top: 1em;
}

.section__content__column {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 2em;
}

.section__content__column:first-of-type {
    margin-top: 0;
}

@media (min-width: 750px) {
    .section__content__column {
        margin-top: 0;
        float: left;
    }
}

@media (min-width: 750px) {
    .section__content__column--half {
        padding: 0 0.75em;
        width: 50%;
    }

    .section__content__column--half:first-child {
        padding-left: 0;
    }

    .section__content__column--half:last-child {
        padding-right: 0;
    }
}

@media (min-width: 750px) and (max-width: 999px) {
    .section--page-title {
        margin-top: 1em;
    }
}

.has-modal body {
    overflow: hidden;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.js .modal-backdrop {
    -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, background-color 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, background-color 0.5s ease-in-out;
}

.modal-backdrop.modal-backdrop--centered-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.modal-backdrop.modal-backdrop--is-closing.modal-backdrop--fade-out-white {
    background-color: rgba(255,255,255,0.8);
}

.modal-backdrop--is-visible {
    visibility: visible;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

.modal {
    background: #fff;
    -webkit-box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    color: #737373;
    min-height: auto;
    visibility: hidden;
}

@media (min-width: 750px) {
    .modal {
        border-radius: 8px;
        margin: 4em auto 5%;
        max-width: 60em;
        min-height: initial;
        width: 90%;
    }
}

.modal.modal--centered {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.modal-backdrop--is-visible .modal {
    -webkit-animation: modal-open 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
    animation: modal-open 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.no-cssanimations .modal-backdrop--is-visible .modal {
    visibility: visible;
}

.modal-backdrop--is-closing .modal {
    -webkit-animation: modal-close 0.25s ease-in-out;
    animation: modal-close 0.25s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.modal__header, .modal__content {
    padding: 1.5em;
}

@media (min-width: 750px) {
    .modal__header, .modal__content {
        padding: 2.5em;
    }
}

.modal__header {
    border-bottom: 1px solid #e6e6e6;
    zoom: 1;
}

.modal__header:after, .modal__header:before {
    content: "";
    display: table;
}

.modal__header:after {
    clear: both;
}

.display-table .modal__header {
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}

.modal__header__title {
    color: #333333;
}

.display-table .modal__header__title {
    display: table-cell;
    width: 100%;
}

.no-js .modal__header__title, .no-display-table .modal__header__title {
    float: left;
}

@media (min-width: 750px) {
    .modal__content p {
        font-size: 1.14286em;
    }
}

.modal__loading-icon {
    display: block;
    margin: 1em auto;
}

.modal__footer {
    background: #f3f3f3;
    border-top: solid 1px #c6c6c6;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 0.75em 1.5em;
}

@media (min-width: 750px) {
    .modal__footer {
        padding: 1.25em 2.5em;
    }
}

.modal__close {
    position: relative;
    -webkit-transition: color 0.3s cubic-bezier(0.3, 0, 0, 1);
    transition: color 0.3s cubic-bezier(0.3, 0, 0, 1);
    vertical-align: middle;
    padding-left: 0.75em;
    white-space: nowrap;
}

.display-table .modal__close {
    display: table-cell;
}

.no-js .modal__close, .no-display-table .modal__close {
    float: right;
}

.modal__close--floating {
    position: absolute;
    top: 1.5em;
    right: 1.5em;
}

.fieldset {
    margin: -0.45em;
    zoom: 1;
}

.fieldset:after, .fieldset:before {
    content: "";
    display: table;
}

.fieldset:after {
    clear: both;
}

.fieldset--inline {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.fieldset--inline .field {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (max-width: 749px) {
    .fieldset--inline {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.fieldset--inline .btn {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0.45em;
    width: auto;
}

@media (min-width: 750px) {
    .anyflexbox .fieldset--inline .btn {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.fieldset-description {
    margin-top: 0.94em;
}

.field {
    width: 100%;
    float: left;
    padding: 0.45em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 750px) {
    .floating-labels .field--two-thirds {
        width: 66.66667%;
    }

    .floating-labels .field--half {
        width: 50%;
    }

    .floating-labels .field--three-eights {
        width: 37.5%;
    }

    .floating-labels .field--third {
        width: 33.33333%;
    }

    .floating-labels .field--quarter {
        width: 25%;
    }
}

.field__message {
    font-size: 0.85714em;
}

.field__message--error {
    display: none;
    line-height: 1.3em;
    margin: 0.75em 0 0.25em;
    color: #ff6d6d;
}

.field--error .field__message--error {
    display: block;
}

.field__message--warning {
    margin: 1em 0 0.5em;
}

.field__message__icon {
    margin-right: 0.25em;
    vertical-align: -2px;
}

.field__label {
    font-weight: 500;
    margin: 0.5em 0;
    display: none;
}

.main .field__label {
    color: #4d4d4d;
}

.floating-labels .main .field__label {
    color: #999999;
}

.sidebar .field__label {
    color: #4d4d4d;
}

.floating-labels .sidebar .field__label {
    color: #999999;
}

.content-box .field__label {
    color: #4d4d4d;
}

.floating-labels .content-box .field__label {
    color: #999999;
}

.default-background .field__label {
    color: #4d4d4d;
}

.floating-labels .default-background .field__label {
    color: #999999;
}

.main .field--active .field__label {
    color: #737373;
}

.sidebar .field--active .field__label {
    color: #737373;
}

.content-box .field--active .field__label {
    color: #737373;
}

.default-background .field--active .field__label {
    color: #737373;
}

.no-js .field__label {
    display: block;
}

.floating-labels .field__label {
    font-size: 0.85714em;
    font-weight: normal;
    position: absolute;
    top: 0;
    width: 100%;
    margin-top: 0.3em;
    padding: 0 0.93333em;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    pointer-events: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.floating-labels .field--show-floating-label .field__label {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

.floating-labels .field__input-wrapper--icon-left .field__label {
    padding-left: 40px;
}

.floating-labels .field__input-wrapper--icon-right .field__label {
    padding-right: 40px;
}

.animate-floating-labels .field__label {
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.field__label--visible {
    display: block;
}

.field__input-wrapper {
    position: relative;
}

.field__input {
    border-radius: 4px;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0.94em 0.8em;
    word-break: normal;
}

.main .field__input {
    background-color: white;
    color: #333333;
}

.no-js .main .field__input, .no-boxshadow .main .field__input {
    border: 1px solid #d9d9d9;
}

.boxshadow .main .field__input {
    -webkit-box-shadow: 0 0 0 1px #d9d9d9;
    box-shadow: 0 0 0 1px #d9d9d9;
}

.main .field__input::-webkit-input-placeholder {
    color: #999999;
}

.main .field__input:-moz-placeholder {
    color: #999999;
}

.main .field__input::-moz-placeholder {
    color: #999999;
}

.main .field__input:-ms-input-placeholder {
    color: #999999;
}

.sidebar .field__input {
    background-color: white;
    color: #333333;
}

.no-js .sidebar .field__input, .no-boxshadow .sidebar .field__input {
    border: 1px solid #d5d5d5;
}

.boxshadow .sidebar .field__input {
    -webkit-box-shadow: 0 0 0 1px #d5d5d5;
    box-shadow: 0 0 0 1px #d5d5d5;
}

.sidebar .field__input::-webkit-input-placeholder {
    color: #999999;
}

.sidebar .field__input:-moz-placeholder {
    color: #999999;
}

.sidebar .field__input::-moz-placeholder {
    color: #999999;
}

.sidebar .field__input:-ms-input-placeholder {
    color: #999999;
}

.content-box .field__input {
    background-color: white;
    color: #333333;
}

.no-js .content-box .field__input, .no-boxshadow .content-box .field__input {
    border: 1px solid #d9d9d9;
}

.boxshadow .content-box .field__input {
    -webkit-box-shadow: 0 0 0 1px #d9d9d9;
    box-shadow: 0 0 0 1px #d9d9d9;
}

.content-box .field__input::-webkit-input-placeholder {
    color: #999999;
}

.content-box .field__input:-moz-placeholder {
    color: #999999;
}

.content-box .field__input::-moz-placeholder {
    color: #999999;
}

.content-box .field__input:-ms-input-placeholder {
    color: #999999;
}

.default-background .field__input {
    background-color: white;
    color: #333333;
}

.no-js .default-background .field__input, .no-boxshadow .default-background .field__input {
    border: 1px solid #d9d9d9;
}

.boxshadow .default-background .field__input {
    -webkit-box-shadow: 0 0 0 1px #d9d9d9;
    box-shadow: 0 0 0 1px #d9d9d9;
}

.default-background .field__input::-webkit-input-placeholder {
    color: #999999;
}

.default-background .field__input:-moz-placeholder {
    color: #999999;
}

.default-background .field__input::-moz-placeholder {
    color: #999999;
}

.default-background .field__input:-ms-input-placeholder {
    color: #999999;
}

.animate-floating-labels .field__input {
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.floating-labels .field--show-floating-label .field__input {
    padding-top: 1.5em;
    padding-bottom: 0.38em;
}

.floating-labels .field--show-floating-label .field__input::-webkit-input-placeholder {
    color: transparent;
}

.floating-labels .field--show-floating-label .field__input:-moz-placeholder {
    color: transparent;
}

.floating-labels .field--show-floating-label .field__input::-moz-placeholder {
    color: transparent;
}

.floating-labels .field--show-floating-label .field__input:-ms-input-placeholder {
    color: transparent;
}

.field__input:focus, .field__input-wrapper--flag-focus .field__input {
    outline: none;
}

.no-js .field__input:focus, .no-boxshadow .field__input:focus, .no-js .field__input-wrapper--flag-focus .field__input, .no-boxshadow .field__input-wrapper--flag-focus .field__input {
    border: 2px solid #1990c6;
}

.boxshadow .field__input:focus, .boxshadow .field__input-wrapper--flag-focus .field__input {
    -webkit-box-shadow: 0 0 0 2px #1990c6;
    box-shadow: 0 0 0 2px #1990c6;
}

.no-js .field--error .field__input, .no-boxshadow .field--error .field__input {
    border: 2px solid #ff6d6d;
}

.boxshadow .field--error .field__input {
    -webkit-box-shadow: 0 0 0 2px #ff6d6d;
    box-shadow: 0 0 0 2px #ff6d6d;
}

.field__input-wrapper--icon-left .field__input {
    padding-left: 40px;
}

.field__input-wrapper--icon-right .field__input {
    padding-right: 40px;
}

.field__input-wrapper--flag-right .field__input {
    padding-right: 4.71429rem;
}

.field__input--iframe-container {
    min-height: 3em;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.no-js .content-box .field__input--iframe-container, .no-boxshadow .content-box .field__input--iframe-container {
    border: 1px solid #fafafa;
}

.boxshadow .content-box .field__input--iframe-container {
    -webkit-box-shadow: 0 0 0 1px #fafafa;
    box-shadow: 0 0 0 1px #fafafa;
}

.floating-labels .field--show-floating-label .field__input--iframe-container {
    padding-bottom: 0;
    padding-top: 0;
}

.field__input--iframe-container::after, .field__input--iframe-container::before {
    content: '';
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.field__input--iframe-container::before {
    background: #e6e6e6;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
    width: 100%;
}

.field__input--iframe-container::after {
    -webkit-animation: load 1s infinite ease-in-out both;
    animation: load 1s infinite ease-in-out both;
    background: #fafafa;
    border-radius: 8px;
    height: 1em;
    margin-top: -0.5em;
    top: 50%;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.card-fields-container--loaded .field__input--iframe-container {
    height: auto;
}

.no-js .content-box .card-fields-container--loaded .field__input--iframe-container, .no-boxshadow .content-box .card-fields-container--loaded .field__input--iframe-container {
    border: 1px solid #d9d9d9;
}

.boxshadow .content-box .card-fields-container--loaded .field__input--iframe-container {
    -webkit-box-shadow: 0 0 0 1px #d9d9d9;
    box-shadow: 0 0 0 1px #d9d9d9;
}

.card-fields-container--loaded .field__input--iframe-container::after, .card-fields-container--loaded .field__input--iframe-container::before {
    opacity: 0;
}

.card-fields-container--loaded .field__input--iframe-container::after {
    left: 100%;
}

.card-fields-container--transitioned .field__input--iframe-container::after, .card-fields-container--transitioned .field__input--iframe-container::before {
    content: none;
}

.card-fields-container .field__message--error {
    color: #fafafa;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.card-fields-container--loaded .field__message--error {
    color: #ff6d6d;
    margin: 0.75em 0 0.25em;
    max-height: 5em;
}

.content-box .card-fields-container--loaded .field--active .field__input--iframe-container {
    outline: none;
}

.no-js .content-box .card-fields-container--loaded .field--active .field__input--iframe-container, .no-boxshadow .content-box .card-fields-container--loaded .field--active .field__input--iframe-container {
    border: 2px solid #1990c6;
}

.boxshadow .content-box .card-fields-container--loaded .field--active .field__input--iframe-container {
    -webkit-box-shadow: 0 0 0 2px #1990c6;
    box-shadow: 0 0 0 2px #1990c6;
}

.no-js .content-box .card-fields-container--loaded .field--error .field__input--iframe-container, .no-boxshadow .content-box .card-fields-container--loaded .field--error .field__input--iframe-container {
    border: 2px solid #ff6d6d;
}

.boxshadow .content-box .card-fields-container--loaded .field--error .field__input--iframe-container {
    -webkit-box-shadow: 0 0 0 2px #ff6d6d;
    box-shadow: 0 0 0 2px #ff6d6d;
}

@-webkit-keyframes load {
    0% {
        left: 1em;
        width: 0;
    }

    50% {
        left: 1em;
        width: calc(100% - 2em);
    }

    100% {
        left: calc(100% - 1em);
        width: 0;
    }
}

@keyframes load {
    0% {
        left: 1em;
        width: 0;
    }

    50% {
        left: 1em;
        width: calc(100% - 2em);
    }

    100% {
        left: calc(100% - 1em);
        width: 0;
    }
}

.card-fields-iframe {
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    color: inherit;
    display: block;
    font: inherit;
    -webkit-font-smoothing: inherit;
    height: 3em;
    line-height: normal;
    margin: 0;
    padding: 0;
    width: 100%;
}

.card-fields-placeholder-lightness {
    display: none;
    position: relative;
    z-index: 30;
}

.field__input--zip {
    text-transform: uppercase;
}

.field__input--zip::-webkit-input-placeholder {
    text-transform: none;
}

.field__input--zip:-moz-placeholder {
    text-transform: none;
}

.field__input--zip::-moz-placeholder {
    text-transform: none;
}

.field__input--zip:-ms-input-placeholder {
    text-transform: none;
}

.field__input--select::-ms-expand {
    display: none;
}

.no-js .field__input--select, .no-csspointerevents .field__input--select {
    background-position: 95% center;
    background-position: right 1em center;
    background-repeat: no-repeat;
}

.field__input--select option {
    background-color: #fff;
    color: #000;
}

.csspointerevents .field__input-wrapper--select::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background-position: center center;
    background-repeat: no-repeat;
    pointer-events: none;
}
/*!= begin(no-rtl) */

.field__icon {
    display: block;
    height: 40px;
    margin-top: -20px;
    position: absolute;
    top: 50%;
    width: 40px;
}

.field__icon:focus {
    outline: none;
}

.field__input-wrapper--icon-right .field__icon {
    right: 0;
}

.field__input-wrapper--icon-left .field__icon {
    left: 0;
}
/*!= end(no-rtl) */

.anyflexbox .field__input-btn-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.anyflexbox .field__input-btn-wrapper .field__input-wrapper {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.anyflexbox .field__input-btn {
    width: auto;
    margin-left: 0.9em;
    white-space: nowrap;
    padding-top: 0;
    padding-bottom: 0;
}

.no-js .field__input-btn, .no-anyflexbox .field__input-btn {
    margin-top: 0.9em;
    padding: 1em 1.5em;
}

.combo-box-wrapper {
    background-color: #fff;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 6px 19px 0 rgba(0,0,0,0.23),0 0 0 1px rgba(2,2,2,0.15);
    box-shadow: 0 6px 19px 0 rgba(0,0,0,0.23),0 0 0 1px rgba(2,2,2,0.15);
    margin-top: 0.45em;
    position: absolute;
    top: 100%;
    left: -1px;
    width: calc(100% + 2px);
    z-index: 3;
}

.no-js .combo-box-wrapper, .no-boxshadow .combo-box-wrapper {
    border: 1px solid rgba(2,2,2,0.15);
}

.combo-box-wrapper--hidden {
    display: none;
}

.combo-box {
    display: block;
    overflow-y: auto;
    max-height: 230px;
}

.combo-box-wrapper--with-footer .combo-box {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.combo-box__item {
    color: #737373;
    cursor: pointer;
}

.combo-box__item:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.combo-box-wrapper--with-footer .combo-box__item:last-child {
    border-radius: 0;
}

.combo-box__item--selected {
    background-color: rgba(0,0,0,0.08);
}

.combo-box__button {
    text-align: left;
    width: 100%;
    padding: 0.94em 0.8em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.combo-box__button * {
    pointer-events: none;
}

.combo-box__header {
    color: #999999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.564em 0.8em;
    text-transform: uppercase;
}

.combo-box__header__title {
    font-size: 0.85714em;
}

.combo-box__header__button {
    color: rgba(0,0,0,0.15);
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}

.combo-box__header__button:hover {
    color: rgba(0,0,0,0.2);
}

.combo-box__footer {
    background-color: rgba(0,0,0,0.02);
    padding: 0.752em 0.8em;
    position: relative;
    z-index: 4;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.content-box {
    border-radius: 4px;
    background: #fff;
    color: #737373;
}

.content-box h2:only-child {
    margin: 0;
}

.no-js .content-box, .no-boxshadow .content-box {
    border: 1px solid #d9d9d9;
}

.boxshadow .content-box {
    -webkit-box-shadow: 0 0 0 1px #d9d9d9;
    box-shadow: 0 0 0 1px #d9d9d9;
}

.content-box, .content-box-spacing {
    margin-top: 1em;
}

.content-box:first-of-type, .content-box-spacing:first-of-type {
    margin-top: 0;
}

.content-box__emphasis {
    font-weight: 500;
    color: #4d4d4d;
}

.content-box__small-text {
    font-size: 0.85714em;
    color: #999999;
}

.content-box__row {
    padding: 1em 1.14286em;
    position: relative;
    zoom: 1;
}

.content-box__row ~ .content-box__row {
    border-top: 1px solid #d9d9d9;
}

.content-box__row:after, .content-box__row:before {
    content: "";
    display: table;
}

.content-box__row:after {
    clear: both;
}

.display-table .content-box__row {
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}

.content-box__row:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.content-box__row:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.content-box__row--tight-spacing-vertical {
    padding-top: 0.85714em;
    padding-bottom: 0.85714em;
}

.content-box__row--secondary {
    background-color: #fafafa;
}

.content-box__row--no-border {
    padding-bottom: 0;
}

.content-box__row + .content-box__row--no-border {
    border-top: none;
    padding-top: 0;
}

.content-box__row--no-border + .content-box__row {
    border-top: none;
}

.content-box__row--no-padding {
    padding: 0;
}

.content-box__row--with-footer {
    padding-bottom: 0.85714em;
}

.display-table .content-box__row__stretch {
    display: table-cell;
    width: 100%;
}

.no-js .content-box__row__stretch, .no-display-table .content-box__row__stretch {
    float: left;
}

.content-box__row__right {
    padding-left: 0.75em;
    white-space: nowrap;
}

.display-table .content-box__row__right {
    display: table-cell;
}

.no-js .content-box__row__right, .no-display-table .content-box__row__right {
    float: right;
}

.content-box__hr {
    border: 0;
    border-bottom: 1px solid #e6e6e6;
    margin: 1.14286em 0;
}

.content-box__hr--tight {
    margin: 0.85714em 0;
}

.content-box--applied-reduction-code-list {
    margin-top: 0.9em;
    background-color: #fafafa;
}

.content-box__header {
    zoom: 1;
}

.content-box__header:after, .content-box__header:before {
    content: "";
    display: table;
}

.content-box__header:after {
    clear: both;
}

.display-table .content-box__header {
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}

.content-box__header ~ .content-box__header {
    margin-top: 1.14286em;
}

.display-table .content-box__header__title {
    display: table-cell;
    width: 100%;
}

.no-js .content-box__header__title, .no-display-table .content-box__header__title {
    float: left;
}

.content-box__header__action {
    font-size: 0.85714em;
    vertical-align: top;
    padding-left: 0.75em;
    white-space: nowrap;
}

.display-table .content-box__header__action {
    display: table-cell;
}

.no-js .content-box__header__action, .no-display-table .content-box__header__action {
    float: right;
}

.content-box__footer {
    border-top: 1px solid #e6e6e6;
    padding-top: 0.85714em;
    margin-top: 0.85714em;
}

.no-js .content-box--loading, .no-boxshadow .content-box--loading {
    border: 1px solid transparent;
}

.boxshadow .content-box--loading {
    -webkit-box-shadow: 0 0 0 1px transparent;
    box-shadow: 0 0 0 1px transparent;
}

.content-box--loading .content-box__heading {
    margin-bottom: 0;
}

@media (max-width: 999px) {
    .order-summary--transition, .order-summary--is-collapsed {
        overflow: hidden;
    }
}

@media (max-width: 999px) {
    .order-summary--is-collapsed {
        height: 0;
        visibility: hidden;
    }
}

.order-summary--transition {
    -webkit-transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
}

.order-summary__section {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}

.order-summary__section ~ .order-summary__section {
    border-top: 1px solid rgba(175,175,175,0.34);
}

@media (min-width: 1000px) {
    .order-summary__section {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .order-summary__section:first-child {
        padding-top: 0;
    }
}

@media (min-width: 1000px) {
    .order-summary__sections {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        /*height: calc(100vh - 8em);*/
        width: 100%;
    }

    .no-js .order-summary__sections, .no-anyflexbox .order-summary__sections {
        height: auto;
    }

    .order-summary__section--product-list {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        min-height: 7em;
        overflow: hidden;
        padding: 0;
        position: relative;
    }

    .order-summary__section--product-list + .order-summary__section {
        border: 0;
    }

    .order-summary__section--product-list::before, .order-summary__section--product-list::after {
        content: '';
        display: block;
        height: 1px;
        left: 0;
        position: absolute;
        -webkit-transition: background-color 0.3s cubic-bezier(0.3, 0, 0, 1);
        transition: background-color 0.3s cubic-bezier(0.3, 0, 0, 1);
        width: 100%;
        z-index: 4;
    }

    .order-summary__section--product-list::before {
        background-color: transparent;
        top: 0;
    }

    .order-summary__section--product-list::after {
        background-color: rgba(175,175,175,0.34);
        bottom: 0;
    }

    .order-summary__section--product-list .product-table {
        margin-top: 0.75em;
        margin-bottom: 1.5em;
    }

    .order-summary__section--has-scroll::before {
        background-color: rgba(175,175,175,0.34);
    }

    .order-summary__section__content {
        min-width: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .no-js .order-summary__section__content, .no-touchevents .order-summary__section__content {
        overflow: hidden;
    }

    .no-js .order-summary__section__content:hover, .no-touchevents .order-summary__section__content:hover {
        overflow-y: auto;
    }
}
.order-summary__sections .product-table td.product__oldprice{width:78px;display: block;}
.order-summary__sections .product-table td.product__oldprice .money{
    font-size:15px;color: #4b4b4b;
}
.order-summary__sections .product-table td.product__oldprice .money-at{
    text-decoration: line-through;
    font-size:13.5px;
    color: #969696;
}
.order-summary__sections .product-table td.product__oldprice span.money span{font-size:70%;}
.order-summary__sections .product-table td.product__oldprice span.money-at span{font-size:100%;}
.order-summary__sections .product-table td.product__oldprice .price-saved{color:red;}
.order-summary__sections .product-table td.product__price{
    position:relative;
}
.order-summary__scroll-indicator {
    background-color: rgba(50,50,50,0.85);
    border-radius: 2em;
    bottom: 1.5em;
    color: #fafafa;
    font-size: 0.85714em;
    left: 50%;
    opacity: 0;
    padding: 0.6em 1.2em;
    position: absolute;
    -webkit-transform: translateX(-50%) translateY(100%) rotateZ(360deg);
    transform: translateX(-50%) translateY(100%) rotateZ(360deg);
    -webkit-transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
    white-space: nowrap;
}

.order-summary__section--is-scrollable .order-summary__scroll-indicator {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0) rotateZ(360deg);
    transform: translateX(-50%) translateY(0) rotateZ(360deg);
}

.order-summary__section--has-scroll .order-summary__scroll-indicator {
    -webkit-transform: translateX(-50%) translateY(-100%) rotateZ(360deg);
    transform: translateX(-50%) translateY(-100%) rotateZ(360deg);
}

.order-summary__scroll-indicator svg {
    fill: currentColor;
    margin-left: 0.21429em;
    margin-top: -0.21429em;
    vertical-align: middle;
}

.order-summary__emphasis {
    font-weight: 500;
}

.sidebar .order-summary__emphasis {
    color: #4b4b4b;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.sidebar .order-summary__emphasis span{
    font-size:70%;
}
.content-box .order-summary__emphasis {
    color: #4d4d4d;
}

.order-summary__small-text {
    font-size: 0.85714em;
}

.sidebar .order-summary__small-text {
    color: #696969;line-height: 16px;
}

.content-box .order-summary__small-text {
    color: #999999;
}
.order-summary__small-text._1line{
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.total-line th, .total-line td {
    padding-top: 0.75em;
}

.total-line:first-child th, .total-line:first-child td {
    padding-top: 0;
}

.total-line--loading th, .total-line--loading td {
    width: 100%;
}

.total-line__price {
    padding-left: 1.5em;
    text-align: right;
    white-space: nowrap;
}

.total-line-table__tbody + .total-line-table__footer .total-line th, .total-line-table__tbody + .total-line-table__footer .total-line td {
    padding-top: 3em;
    position: relative;
}

.total-line-table__tbody + .total-line-table__footer .total-line th::before, .total-line-table__tbody + .total-line-table__footer .total-line td::before {
    content: '';
    position: absolute;
    top: 1.5em;
    left: 0;
    width: 100%;
    height: 1px;
}

.sidebar .total-line-table__tbody + .total-line-table__footer .total-line th::before, .sidebar .total-line-table__tbody + .total-line-table__footer .total-line td::before {
    background-color: rgba(175,175,175,0.34);
}

.content-box .total-line-table__tbody + .total-line-table__footer .total-line th::before, .content-box .total-line-table__tbody + .total-line-table__footer .total-line td::before {
    background-color: rgba(179,179,179,0.34);
}

.payment-due-label__total {
    font-size: 1.14286em;
}

.sidebar .payment-due-label__total {
    color: #4b4b4b;
}

.content-box .payment-due-label__total {
    color: #4d4d4d;
}

.payment-due-label__taxes {
    display: block;
}

.sidebar .payment-due-label__taxes {
    color: #969696;
}

.content-box .payment-due-label__taxes {
    color: #999999;
}

.payment-due__price {
    font-size: 1.71429em;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1em;
}

.sidebar .payment-due__price {
    color: #4b4b4b;
}

.content-box .payment-due__price {
    color: #4d4d4d;
}

.payment-due__currency {
    font-size: 0.85714em;
    vertical-align: 0.2em;
    margin-right: 0.5em;
}

.sidebar .payment-due__currency {
    color: #969696;
}

.content-box .payment-due__currency {
    color: #999999;
}

.applied-reduction-code {
    margin-left: 0.5em;
}

.applied-reduction-code__icon {
    fill: #1990c6;
    vertical-align: middle;
    margin-right: 0.14286em;
}

.applied-reduction-code__information {
    font-size: 0.85714em;
    color: #1990c6;
    font-weight: 500;
}

.applied-reduction-code__clear-button {
    vertical-align: middle;
    margin-left: 0.28571em;
}

.full-page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: white;
    color: #737373;
}

.full-page-overlay__wrap {
    margin: auto;
    width: 100%;
    padding: 10% 0;
}

.full-page-overlay__title {
    color: #4d4d4d;
}

.full-page-overlay__content {
    margin: 0 auto;
    max-width: 36em;
    zoom: 1;
    padding-left: 1em;
    padding-right: 1em;
}

.full-page-overlay__content:after, .full-page-overlay__content:before {
    content: "";
    display: table;
}

.full-page-overlay__content:after {
    clear: both;
}

.full-page-overlay__content form {
    margin: 1.5em 0;
}

.full-page-overlay__icon {
    margin-bottom: 1.5em;
}

.full-page-overlay__title {
    margin-bottom: 0.5em;
}

.full-page-overlay__illustration {
    margin-bottom: 1.5em;
}

.full-page-overlay__illustration svg {
    width: 13em;
    height: 13em;
}

.forwarding-icon-illustration__circle {
    fill: #d9d9d9;
    stroke: none;
}

.forwarding-icon-illustration__accent {
    fill: #1990c6;
    stroke: #1990c6;
}

.forwarding-icon-illustration__errors {
    fill: #ff6d6d;
    stroke: #ff6d6d;
}

.tooltip {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    bottom: 80%;
    right: -0.33333em;
    width: 180px;
    margin: 0 0 5px 0;
    padding: 0.75em 1em;
    border-radius: 4px;
    white-space: normal;
    font-size: 0.85714em;
    font-style: normal;
    text-align: center;
    color: #fff;
    display: block;
    z-index: 200;
    -webkit-transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
    -webkit-transform: rotateX(20deg) scale(0.8);
    transform: rotateX(20deg) scale(0.8);
    -webkit-transform-origin: 90% 120%;
    transform-origin: 90% 120%;
    -webkit-backface-visibility: hidden;
    background-color: rgba(51,51,51,0.9);
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.tooltip:after {
    content: "";
    position: absolute;
    top: 100%;
    right: 18px;
    width: 0;
    border: 6px solid transparent;
    border-top-color: rgba(51,51,51,0.9);
}

@media (min-width: 750px) {
    .tooltip {
        -webkit-transform-origin: center 120%;
        transform-origin: center 120%;
        right: 50%;
        margin-right: -90px;
    }

    .tooltip:after {
        right: 50%;
        margin-right: -6px;
    }
}

.has-tooltip {
    cursor: pointer;
}

.has-tooltip:hover .tooltip, .has-tooltip:focus .tooltip {
    -webkit-transform: rotateX(0deg) scale(1);
    transform: rotateX(0deg) scale(1);
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

@media (max-width: 999px) {
    .breadcrumb {
        display: none;
    }
}

.breadcrumb__item {
    display: inline-block;
    font-size: 0.85714em;
    color: #999999;
}

.breadcrumb__item--current {
    font-weight: 500;
    color: #4d4d4d;
}

.breadcrumb__chevron-icon {
    color: #999999;
    margin: 0 0.4em;
}

.breadcrumb__text, .breadcrumb__link, .breadcrumb__chevron-icon {
    vertical-align: middle;
}

.breadcrumb--center {
    text-align: center;
}

.main__footer {
    padding: 1em 0;
    border-top: 1px solid #e6e6e6;
}

.copyright-text {
    font-size: 0.85714em;
    color: #999999;
}

.policy-list {
    zoom: 1;
}

.policy-list:after, .policy-list:before {
    content: "";
    display: table;
}

.policy-list:after {
    clear: both;
}

.policy-list__item {
    float: left;
    font-size: 0.85714em;
    margin-right: 1.5em;
    margin-bottom: 0.5em;
}

.input-checkbox, .input-radio {
    width: 18px;
    height: 18px;
    -webkit-box-shadow: 0 0 0 0 #1990c6 inset;
    box-shadow: 0 0 0 0 #1990c6 inset;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: relative;
    cursor: pointer;
    vertical-align: -4px;
    border: 1px solid;
}

.main .input-checkbox, .main .input-radio {
    border-color: #d9d9d9;
}

.main .input-checkbox:hover, .main .input-radio:hover {
    border-color: #cccccc;
}

.main .input-checkbox:disabled, .main .input-radio:disabled {
    background-color: #fafafa;
    border-color: #cccccc;
}

.sidebar .input-checkbox, .sidebar .input-radio {
    border-color: #d5d5d5;
}

.sidebar .input-checkbox:hover, .sidebar .input-radio:hover {
    border-color: #c8c8c8;
}

.sidebar .input-checkbox:disabled, .sidebar .input-radio:disabled {
    background-color: whitesmoke;
    border-color: #c8c8c8;
}

.content-box .input-checkbox, .content-box .input-radio {
    border-color: #d9d9d9;
}

.content-box .input-checkbox:hover, .content-box .input-radio:hover {
    border-color: #cccccc;
}

.content-box .input-checkbox:disabled, .content-box .input-radio:disabled {
    background-color: #fafafa;
    border-color: #cccccc;
}

.default-background .input-checkbox, .default-background .input-radio {
    border-color: #d9d9d9;
}

.default-background .input-checkbox:hover, .default-background .input-radio:hover {
    border-color: #cccccc;
}

.default-background .input-checkbox:disabled, .default-background .input-radio:disabled {
    background-color: #fafafa;
    border-color: #cccccc;
}

.input-checkbox:after, .input-radio:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    -webkit-transition: all 0.2s ease-in-out 0.1s;
    transition: all 0.2s ease-in-out 0.1s;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.input-checkbox:focus, .input-radio:focus {
    border: 2px solid #1990c6;
}

.input-checkbox:checked, .input-radio:checked {
    border: none;
    -webkit-box-shadow: 0 0 0 10px #1990c6 inset;
    box-shadow: 0 0 0 10px #1990c6 inset;
}

.input-checkbox:checked:after, .input-radio:checked:after {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

.input-checkbox:checked:focus, .input-radio:checked:focus {
    border-color: #136f99;
}

.input-radio {
    border-radius: 50%;
}

.input-radio:after {
    width: 4px;
    height: 4px;
    margin-left: -2px;
    margin-top: -2px;
    background-color: #fff;
    border-radius: 50%;
}

.input-checkbox {
    border-radius: 4px;
}

.radio-wrapper, .checkbox-wrapper {
    zoom: 1;
}

.radio-wrapper:after, .radio-wrapper:before, .checkbox-wrapper:after, .checkbox-wrapper:before {
    content: "";
    display: table;
}

.radio-wrapper:after, .checkbox-wrapper:after {
    clear: both;
}

.display-table .radio-wrapper, .display-table .checkbox-wrapper {
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}

.checkbox-wrapper {
    margin-bottom: 1em;
}

.checkbox-wrapper:last-child {
    margin-bottom: 0;
}

.checkbox-wrapper.content-box__row {
    margin-bottom: 0;
}

.radio__input, .checkbox__input {
    padding-right: 0.75em;
    white-space: nowrap;
}

.display-table .radio__input, .display-table .checkbox__input {
    display: table-cell;
}

.no-js .radio__input, .no-display-table .radio__input, .no-js .checkbox__input, .no-display-table .checkbox__input {
    float: left;
}

.radio__label, .checkbox__label {
    cursor: pointer;
    vertical-align: middle;
}

.display-table .radio__label, .display-table .checkbox__label {
    display: table-cell;
    width: 100%;
}

.no-js .radio__label, .no-display-table .radio__label, .no-js .checkbox__label, .no-display-table .checkbox__label {
    float: left;
}

.radio__label__primary {
    vertical-align: top;
}

.display-table .radio__label__primary {
    display: table-cell;
    width: 100%;
}

.no-js .radio__label__primary, .no-display-table .radio__label__primary {
    float: left;
}

.radio__label__accessory {
    padding-left: 0.75em;
    white-space: nowrap;
    text-align: right;
}

.display-table .radio__label__accessory {
    display: table-cell;
}

.no-js .radio__label__accessory, .no-display-table .radio__label__accessory {
    float: right;
}

.radio__label__accessory .payment-icon {
    margin: -2px 0 -6px;
}

.payment-method-wrapper .radio__label__accessory {
    vertical-align: middle;
}

@media (max-width: 749px) {
    .payment-method-wrapper .radio-wrapper {
        display: block;
    }

    .payment-method-wrapper .radio__label, .payment-method-wrapper .radio__label__accessory {
        display: block;
        padding-left: 0;
        text-align: left;
    }

    .payment-method-wrapper .radio__label__primary::after {
        content: '';
        display: block;
        height: 0.65em;
    }
}

.payment-icon {
    display: inline-block;
    width: 38px;
    height: 24px;
    -webkit-transition: opacity 0.5s cubic-bezier(0.3, 0, 0, 1);
    transition: opacity 0.5s cubic-bezier(0.3, 0, 0, 1);
    -webkit-backface-visibility: hidden;
}

.blank-slate .payment-icon {
    vertical-align: middle;
}

.radio__label__accessory .known .payment-icon.selected {
    -webkit-animation: bump 0.5s ease-in-out;
    animation: bump 0.5s ease-in-out;
}

.radio__label__accessory .known .payment-icon:not(.selected) {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
}

.offsite-payment-gateway-logo {
    height: 24px;
    display: block;
    margin-top: -2px;
}

.payment-method-list__item {
    padding-top: 2px;
    margin-bottom: 0.5em;
}

.payment-method-list__item__icon {
    vertical-align: middle;
    margin: -0.1em 0.25em 0 0;
}

.payment-icon-list__more {
    vertical-align: middle;
    margin-top: -2px;
    margin-left: 0.25em;
    display: inline-block;
}

.amazon-payments__widget {
    width: 100%;
    height: 400px;
}

.amazon-payments__link {
    display: block;
    margin-top: 1.5em;
}

.shipping-method-item__info {
    margin-top: 0.25em;
}

.shipping-method-item__label {
    margin-left: 0.5em;
    text-transform: uppercase;
}

.blank-slate {
    padding: 1.5em;
    text-align: center;
}

.blank-slate svg {
    margin-bottom: 1em;
    max-height: 150px;
}

@media (min-width: 750px) {
    .blank-slate {
        padding-left: 4.5em;
        padding-right: 4.5em;
    }
}

.blank-slate__title {
    display: block;
    margin-bottom: 0.65em;
}

.blank-slate__icon {
    margin-bottom: 1em;
}

.blank-slate__btn {
    margin-top: 1em;
}

.notice {
    border-radius: 4px;
    padding: 1em 1em .85em;
    margin-bottom: 1.5em;
    background: #ff6d6d;
}

.notice:last-child {
    margin-bottom: 0;
}

.step__sections + .notice {
    margin-top: 1.5em;
}

.notice + .step__footer {
    margin-top: 0;
}

.notice__text {
    color: #ffe2e2;
}

.product td {
    padding-top: 1em;
}

.product:first-child td {
    padding-top: 0;
}

.product:not(.product--loading) + .product--loading td {
    padding-top: 0;
}

.product-thumbnail {
    width: 4.6em;
    height: 4.6em;
    border-radius: 8px;
    background: #fff;
    position: relative;
}

.product-thumbnail::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.1) inset;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1) inset;
    z-index: 2;
}

.product--loading .product-thumbnail::after {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.product-thumbnail__wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;
}

.product-thumbnail__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}
.product-thumbnail__quantity {
    font-size: 0.85714em;
    font-weight: 500;
    white-space: nowrap;
    padding: 0.15em 0.65em;
    border-radius: 2em;
    background-color: #f7f71a;
    color: #000;
    position: absolute;
    right: 0px;
    top: 5px;
    z-index: 3;
    font-weight: 600;
}

.product__price {
    white-space: nowrap;
}

.product__description__name, .product__description__variant, .product__description__property {
    display: block;
}

.product__description {
    width: 100%;
}

.product__description__name {
    width: 1em;
    *width: 100%;
    min-width: 100%;
}

.product__description .cart-item--content-price .price-saved{
    color: #e7421f;
    font-weight: bold;
}
.product__status {
    position: relative;
    white-space: nowrap;
}

.product__status--sold-out {
    color: #ff6d6d;
}

.product__status__icon {
    margin-right: 0.5em;
    vertical-align: -0.15em;
}

.logged-in-customer-information {
    zoom: 1;
}

.logged-in-customer-information:after, .logged-in-customer-information:before {
    content: "";
    display: table;
}

.logged-in-customer-information:after {
    clear: both;
}

.display-table .logged-in-customer-information {
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}

.logged-in-customer-information__avatar-wrapper {
    padding-right: 1em;
    white-space: nowrap;
    vertical-align: middle;
}

.display-table .logged-in-customer-information__avatar-wrapper {
    display: table-cell;
}

.no-js .logged-in-customer-information__avatar-wrapper, .no-display-table .logged-in-customer-information__avatar-wrapper {
    float: left;
}

.logged-in-customer-information__avatar {
    border-radius: 8px;
    background-size: cover;
    position: relative;
    max-width: none;
    width: 50px;
    height: 50px;
    overflow: hidden;
}

.logged-in-customer-information__paragraph {
    padding-top: 0.25em;
    vertical-align: middle;
}

.display-table .logged-in-customer-information__paragraph {
    display: table-cell;
    width: 100%;
}

.no-js .logged-in-customer-information__paragraph, .no-display-table .logged-in-customer-information__paragraph {
    float: left;
}

.logged-in-customer-newsletter {
    margin-top: 1.5em;
}

@media (min-width: 1000px) {
    .alt-payment-list-container {
        padding-top: 1.5em;
    }
}

@media (min-width: 1000px) {
    .alt-payment-list--center {
        text-align: center;
    }
}

.alt-payment-list {
    font-size: 0;
}

.alt-payment-list__item {
    position: relative;
    display: block;
    margin: 0 0 0.5em;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    vertical-align: middle;
}

@media (min-width: 750px) {
    .alt-payment-list__item {
        display: inline-block;
        margin: 0.5em 0 0.5em 0.5em;
    }

    .alt-payment-list__item:first-child {
        margin-left: 0;
    }
}

.alt-payment-list__item__link {
    display: block;
    padding: 1.28571em 0;
}

@media (min-width: 750px) {
    .alt-payment-list__item__link {
        padding: 0.85714em 0;
        min-width: 10.78571em;
    }
}

.alt-payment-list__item__logo {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 1.28571em;
}

.alt-payment-list__item--amazon {
    background: #fad676;
}

.alt-payment-list__item--amazon:hover {
    background-color: #f9ca4f;
}

.no-js .alt-payment-list__item--amazon {
    display: none;
}

.alt-payment-list__item--amazon .alt-payment-list__item__logo {
    -webkit-transform: translateY(0.28571em);
    transform: translateY(0.28571em);
}

.alt-payment-list-amazon-button-image {
    max-height: none !important;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.alt-payment-list__item--paypal {
    background-color: #ffc520;
}

.alt-payment-list__item--paypal:hover {
    background-color: #f6b600;
}

.alt-payment-list__item--paypalv4 .alt-payment-list__item__link {
    padding: 0 !important;
    margin: 0 !important;
    vertical-align: top;
    line-height: 0 !important;
}

.alt-payment-list__item--apple-pay {
    background-color: #000;
    font-family: -apple-system, 'Helvetica Neue', sans-serif;
    font-weight: normal;
    text-transform: none;
    text-decoration: none;
    white-space: nowrap;
}

.alt-payment-list__item--apple-pay .alt-payment-list__item__link {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    color: #fff;
}

@media (min-width: 750px) {
    .alt-payment-list__item--apple-pay .alt-payment-list__item__link {
        padding: 0.85714em 0;
    }
}

.alt-payment-list__item--apple-pay .alt-payment-list__item__link .alt-payment-list__item__logo {
    width: 3em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
}

.alternative-payment-separator {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 0.85714em;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
    color: #999999;
    margin-top: 1.5em;
}

@media (max-width: 749px) {
    .alternative-payment-separator {
        padding-bottom: 1.5em;
    }
}

@media (min-width: 750px) and (max-width: 999px) {
    .alternative-payment-separator {
        margin-bottom: 1.5em;
    }
}

.alternative-payment-separator::after, .alternative-payment-separator::before {
    content: '';
    display: inline-block;
    height: 1px;
    background: #e6e6e6;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.alternative-payment-separator__content {
    display: inline-block;
    padding: 0 1em;
}

.hidden {
    display: none !important;
}

.visually-hidden {
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip: rect(0 0 0 0);
    width: 2px;
    height: 2px;
    margin: -2px;
    overflow: hidden;
    padding: 0;
    position: absolute;
}

@media (max-width: 749px) {
    .visually-hidden-on-mobile {
        border: 0;
        clip: rect(0, 0, 0, 0);
        clip: rect(0 0 0 0);
        width: 2px;
        height: 2px;
        margin: -2px;
        overflow: hidden;
        padding: 0;
        position: absolute;
    }
}

@media (min-width: 1000px) {
    .visually-hidden-on-desktop {
        border: 0;
        clip: rect(0, 0, 0, 0);
        clip: rect(0 0 0 0);
        width: 2px;
        height: 2px;
        margin: -2px;
        overflow: hidden;
        padding: 0;
        position: absolute;
    }
}

.visible-on-focus {
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip: rect(0 0 0 0);
    width: 2px;
    height: 2px;
    margin: -2px;
    overflow: hidden;
    padding: 0;
    position: absolute;
}

.visible-on-focus:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.no-js .shown-if-js {
    display: none;
}

.js .hidden-if-js {
    display: none;
}

.js .visually-hidden-if-js {
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip: rect(0 0 0 0);
    width: 2px;
    height: 2px;
    margin: -2px;
    overflow: hidden;
    padding: 0;
    position: absolute;
}

@media (max-width: 749px) {
    .hidden-on-mobile {
        display: none;
    }
}

@media (min-width: 750px) {
    .shown-on-mobile {
        display: none;
    }
}

@media (min-width: 750px) and (max-width: 999px) {
    .hidden-on-tablet {
        display: none;
    }
}

@media (max-width: 749px) and (min-width: 1000px) {
    .shown-on-tablet {
        display: none;
    }
}

@media (min-width: 1000px) {
    .hidden-on-desktop {
        display: none;
    }
}

@media (max-width: 999px) {
    .shown-on-desktop {
        display: none;
    }
}

.order-summary-toggle {
    background: #fafafa;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    padding: 1.25em 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: left;
    width: 100%;
}

@media (min-width: 1000px) {
    .order-summary-toggle {
        display: none;
    }
}

.order-summary-toggle__inner {
    zoom: 1;
}

.order-summary-toggle__inner:after, .order-summary-toggle__inner:before {
    content: "";
    display: table;
}

.order-summary-toggle__inner:after {
    clear: both;
}

.display-table .order-summary-toggle__inner {
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}

.order-summary-toggle__icon-wrapper {
    vertical-align: middle;
    padding-right: 0.75em;
    white-space: nowrap;
}

.display-table .order-summary-toggle__icon-wrapper {
    display: table-cell;
}

.no-js .order-summary-toggle__icon-wrapper, .no-display-table .order-summary-toggle__icon-wrapper {
    float: left;
}

.order-summary-toggle__icon {
    fill: #1990c6;
    -webkit-transition: fill 0.2s ease-in-out;
    transition: fill 0.2s ease-in-out;
}

.order-summary-toggle:hover .order-summary-toggle__icon, .order-summary-toggle:focus .order-summary-toggle__icon {
    fill: #136f99;
}

.order-summary-toggle__text {
    color: #1990c6;
    vertical-align: middle;
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
    display: none;
}

.order-summary-toggle:hover .order-summary-toggle__text, .order-summary-toggle:focus .order-summary-toggle__text {
    color: #136f99;
}

.order-summary-toggle--show .order-summary-toggle__text--show, .order-summary-toggle--hide .order-summary-toggle__text--hide {
    display: block;
}

.display-table .order-summary-toggle--show .order-summary-toggle__text--show, .display-table .order-summary-toggle--hide .order-summary-toggle__text--hide {
    display: table-cell;
    width: 100%;
}

.no-js .order-summary-toggle--show .order-summary-toggle__text--show, .no-display-table .order-summary-toggle--show .order-summary-toggle__text--show, .no-js .order-summary-toggle--hide .order-summary-toggle__text--hide, .no-display-table .order-summary-toggle--hide .order-summary-toggle__text--hide {
    float: left;
}

.order-summary-toggle__total-recap {
    vertical-align: middle;
    text-align: right;
    padding-left: 0.75em;
    white-space: nowrap;
}

.display-table .order-summary-toggle__total-recap {
    display: table-cell;
}

.no-js .order-summary-toggle__total-recap, .no-display-table .order-summary-toggle__total-recap {
    float: right;
}

.total-recap__original-price {
    font-size: 0.85714em;
    color: #999999;
    display: block;
}

.total-recap__final-price {
    font-size: 1.28571em;
    line-height: 1em;
    color: #4d4d4d;
}

.order-summary-toggle__dropdown {
    vertical-align: middle;
    -webkit-transition: fill 0.2s ease-in-out;
    transition: fill 0.2s ease-in-out;
    fill: #1990c6;
}

.order-summary-toggle:hover .order-summary-toggle__dropdown, .order-summary-toggle:focus .order-summary-toggle__dropdown {
    fill: #136f99;
}

.g-recaptcha {
    border-radius: 4px;
    display: inline-block;
}

.no-js .field--error .g-recaptcha, .no-boxshadow .field--error .g-recaptcha {
    border: 2px solid #ff6d6d;
}

.boxshadow .field--error .g-recaptcha {
    -webkit-box-shadow: 0 0 0 2px #ff6d6d;
    box-shadow: 0 0 0 2px #ff6d6d;
}

.no-js .g-recaptcha {
    display: none;
}

.g-recaptcha-nojs {
    max-width: 100%;
    width: 302px;
}

.g-recaptcha-nojs__iframe {
    height: 423px;
    width: 100%;
}

.g-recaptcha-nojs__input-wrapper {
    background: #f9f9f9;
    border: 1px #c1c1c1 solid;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 0.5em;
    padding: 0.75em;
}

.g-recaptcha-nojs__input {
    background-color: #fff;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 5em;
    padding: 0.45em;
    resize: vertical;
    width: 100%;
}

.no-js .field--error .g-recaptcha-nojs__input, .no-boxshadow .field--error .g-recaptcha-nojs__input {
    border: 2px solid #ff6d6d;
}

.boxshadow .field--error .g-recaptcha-nojs__input {
    -webkit-box-shadow: 0 0 0 2px #ff6d6d;
    box-shadow: 0 0 0 2px #ff6d6d;
}

.remember-me {
    text-align: center;
}

.remember-me__header {
    color: #4d4d4d;
}

.remember-me__content {
    margin: 1em 0;
}

.remember-me__fieldset {
    max-width: 13em;
    margin: auto;
}

.remember-me__field {
    padding: 0;
    text-align: center;
    position: relative;
}

.remember-me__field::after {
    background-color: #1990c6;
    border-radius: 2px;
    bottom: 0;
    content: '';
    height: 2px;
    left: 2.5%;
    position: absolute;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.54, -0.01, 0, 1);
    transition: -webkit-transform 0.2s cubic-bezier(0.54, -0.01, 0, 1);
    transition: transform 0.2s cubic-bezier(0.54, -0.01, 0, 1);
    transition: transform 0.2s cubic-bezier(0.54, -0.01, 0, 1),-webkit-transform 0.2s cubic-bezier(0.54, -0.01, 0, 1);
    width: 95%;
}

.remember-me--loading .remember-me__field::after, .remember-me--error .remember-me__field::after, .remember-me--success .remember-me__field::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.remember-me--error .remember-me__field::after {
    background-color: #ff6d6d;
}

.remember-me__input {
    color: #333;
    font-size: 2em;
    font-weight: bold;
    letter-spacing: 0.52em;
    outline: none;
    padding: 0.3em 0 0.3em 4.5%;
    width: 7em;
}

.remember-me__input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.remember-me__input::-ms-clear {
    display: none;
}

.remember-me__code-not-received {
    -webkit-transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
    margin-top: 1em;
    background-color: #f5f6f7;
    padding: 0.8em;
    font-size: 0.85714em;
    border-radius: 4px;
}

.remember-me__field-underline-box {
    background-color: #9b9b9b;
    border-radius: 2px;
    bottom: 0;
    height: 2px;
    left: 2.5%;
    position: absolute;
    width: 11.66667%;
}

.field--active .remember-me__field-underline-box--active {
    background-color: #1990c6;
}

.remember-me__field-underline-box--completed {
    opacity: 0.4;
}

.remember-me__field-underline-box:nth-of-type(2) {
    left: 19.16667%;
}

.remember-me__field-underline-box:nth-of-type(3) {
    left: 35.83333%;
}

.remember-me__field-underline-box:nth-of-type(4) {
    left: 52.5%;
}

.remember-me__field-underline-box:nth-of-type(5) {
    left: 69.16667%;
}

.remember-me__field-underline-box:nth-of-type(6) {
    left: 85.83333%;
}

.remember-me-footer {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 3.5em;
    padding: 0.5em 1em;
    position: relative;
}

.remember-me-footer__icon-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
}

.remember-me-footer__error {
    bottom: 0.6em;
    clear: both;
    color: #ff6d6d;
    display: none;
    font-size: 0.85714em;
    overflow: hidden;
    position: relative;
    text-align: center;
    top: -2em;
    -webkit-transform: none;
    transform: none;
}

.remember-me-footer--error .remember-me-footer__error {
    display: block;
}

.remember-me-footer__message {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f5f6f7;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #979797;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 0.85714em;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 500ms cubic-bezier(0.3, 0, 0, 1);
    transition: all 500ms cubic-bezier(0.3, 0, 0, 1);
    width: 100%;
}

.remember-me-footer--message .remember-me-footer__message {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.remember-me__phone-icon, .remember-me-footer__text {
    -webkit-animation: fade-in-from-bottom 0.3s 400ms cubic-bezier(0.3, 0, 0, 1) forwards;
    animation: fade-in-from-bottom 0.3s 400ms cubic-bezier(0.3, 0, 0, 1) forwards;
}

.remember-me-footer__text-1 {
    -webkit-animation: fade-out-to-top 0.3s 2s cubic-bezier(0.3, 0, 0, 1) forwards;
    animation: fade-out-to-top 0.3s 2s cubic-bezier(0.3, 0, 0, 1) forwards;
}

.remember-me-footer__text-2 {
    -webkit-animation: fade-in-from-bottom 0.3s 2s cubic-bezier(0.3, 0, 0, 1) forwards;
    animation: fade-in-from-bottom 0.3s 2s cubic-bezier(0.3, 0, 0, 1) forwards;
    opacity: 0;
}

.remember-me__phone-icon {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 1em;
    text-align: right;
}

.remember-me__phone-icon .icon-svg {
    -webkit-animation: wobble 100ms 2.4s linear 6;
    animation: wobble 100ms 2.4s linear 6;
    height: 2em;
}

.remember-me__phone-icon-inner {
    position: relative;
}

.remember-me__phone-icon-inner::after {
    -webkit-animation: scale-up-bounce 200ms 3s forwards;
    animation: scale-up-bounce 200ms 3s forwards;
    background: #1990c6;
    border-radius: 8px;
    border: 2px solid #f5f6f7;
    content: '';
    height: 8px;
    position: absolute;
    right: -2px;
    top: -6px;
    -webkit-transform: scale(0);
    transform: scale(0);
    width: 8px;
}

.remember-me__phone-icon, .remember-me-footer__text {
    opacity: 0;
}

.remember-me-footer__text {
    -webkit-box-flex: 3;
    -webkit-flex: 3;
    -ms-flex: 3;
    flex: 3;
    height: 3.5em;
    line-height: 3.5em;
    position: relative;
    text-align: left;
}

.remember-me-footer__text-1, .remember-me-footer__text-2 {
    position: absolute;
}

.remember-me-icon-loading {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 500ms 200ms cubic-bezier(0.3, 0, 0, 1);
    transition: -webkit-transform 500ms 200ms cubic-bezier(0.3, 0, 0, 1);
    transition: transform 500ms 200ms cubic-bezier(0.3, 0, 0, 1);
    transition: transform 500ms 200ms cubic-bezier(0.3, 0, 0, 1),-webkit-transform 500ms 200ms cubic-bezier(0.3, 0, 0, 1);
}

.remember-me-footer--loading .remember-me-icon-loading {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.remember-me-icon-loading .icon--double-spinner {
    height: 30px;
    width: 30px;
}

.remember-me-icon-success {
    -webkit-transform: scale(0);
    transform: scale(0);
}

.remember-me-footer--success .remember-me-icon-success {
    -webkit-animation: scale-up-bounce-spring 600ms cubic-bezier(0.08, 0.36, 0.32, 0.97);
    animation: scale-up-bounce-spring 600ms cubic-bezier(0.08, 0.36, 0.32, 0.97);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.remember-me-button-wrapper {
    position: relative;
}

.remember-me-button {
    -webkit-animation: fade-in 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
    animation: fade-in 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
    bottom: 5px;
    padding: 0 0.5em;
    position: absolute;
    right: 5px;
    top: 5px;
    width: auto;
    z-index: 1;
}

.remember-me-button__icon {
    width: 36px;
}

.remember-me-error-pane {
    padding: 2em;
}

.remember-me-error-pane__icon {
    margin-bottom: 1.3em;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.remember-me-error-pane--visible .remember-me-error-pane__icon {
    -webkit-animation: scale-up-bounce-spring 600ms 200ms cubic-bezier(0.08, 0.36, 0.32, 0.97) forwards;
    animation: scale-up-bounce-spring 600ms 200ms cubic-bezier(0.08, 0.36, 0.32, 0.97) forwards;
}

.remember-me-error-pane__title, .remember-me-error-pane__content, .remember-me-error-pane__footer {
    opacity: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.08, 0.36, 0.32, 0.97);
    transition: all 0.3s cubic-bezier(0.08, 0.36, 0.32, 0.97);
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

.remember-me-error-pane--visible .remember-me-error-pane__title, .remember-me-error-pane--visible .remember-me-error-pane__content, .remember-me-error-pane--visible .remember-me-error-pane__footer {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.remember-me-error-pane__title {
    color: #4d4d4d;
    font-weight: 500;
    margin-bottom: 0.8em;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.remember-me-error-pane__content {
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
}

.remember-me-error-pane__footer {
    padding-top: 2em;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition-delay: 230ms;
    transition-delay: 230ms;
}

.has-popover body {
    height: auto;
    position: relative;
    min-height: 100%;
}

.popover-backdrop {
    background: transparent;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 1s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: all 1s cubic-bezier(0.2, 0.9, 0.3, 1);
    visibility: hidden;
    z-index: 10;
}

.popover-backdrop--visible {
    background: rgba(0,0,0,0.18);
    visibility: visible;
}

.popover-backdrop--hidden {
    display: none;
}

.popover {
    color: #737373;
    opacity: 0;
    outline: none;
    position: absolute;
    -webkit-transform: scale(0.1) matrix3d(1, 0, 0, 0, 0, 0.8, 0.5, -0.002, 0, -0.4, 0.8, 0, 0, 0, 0, 1);
    transform: scale(0.1) matrix3d(1, 0, 0, 0, 0, 0.8, 0.5, -0.002, 0, -0.4, 0.8, 0, 0, 0, 0, 1);
    -webkit-transform-origin: 0% 15%;
    transform-origin: 0% 15%;
    -webkit-transition: opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1),-webkit-transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1),-webkit-transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1),opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1),opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1),-webkit-transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    visibility: hidden;
    width: 21.5em;
    z-index: 20;
}

@media (max-width: 749px) {
    .popover {
        left: 50%;
        top: 2em;
        margin-left: -10.75em;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transition: opacity 0.3s 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
        transition: opacity 0.3s 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
    }
}

.popover-backdrop--visible .popover {
    opacity: 1;
    -webkit-transform: scale(1) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: scale(1) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    visibility: visible;
}

@media (max-width: 749px) {
    .popover-backdrop--visible .popover {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.popover--hidden .popover {
    opacity: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: all 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    -webkit-transform: scale(0.1) matrix3d(1, 0, 0, 0, 0, 0.8, 0.5, -0.002, 0, -0.4, 0.8, 0, 0, 0, 0, 1);
    transform: scale(0.1) matrix3d(1, 0, 0, 0, 0, 0.8, 0.5, -0.002, 0, -0.4, 0.8, 0, 0, 0, 0, 1);
}

@media (max-width: 749px) {
    .popover--hidden .popover {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.popover::before {
    background: #dddddd;
    background: linear-gradient(45deg, white 0%, #ddd 50%);
    border-radius: 4px;
    content: '';
    display: block;
    height: 25px;
    left: 2px;
    margin-left: -8px;
    position: absolute;
    top: 1.8em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 25px;
}

@media (max-width: 749px) {
    .popover::before {
        display: none;
    }
}

.popover::after {
    -webkit-box-shadow: 0 19px 47px rgba(6,11,13,0.35);
    box-shadow: 0 19px 47px rgba(6,11,13,0.35);
    content: '';
    display: block;
    height: 100%;
    left: 5%;
    position: absolute;
    right: 5%;
    top: 0;
    width: 90%;
    z-index: -1;
}

.popover-pane {
    opacity: 1;
    -webkit-transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.popover-pane--hidden {
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.popover--bottom-right, .popover--bottom-left {
    -webkit-transform-origin: 95% 0%;
    transform-origin: 95% 0%;
}

.popover--bottom-right::before, .popover--bottom-left::before {
    background: linear-gradient(135deg, white 0%, #ddd 50%);
    left: auto;
    margin-left: -8px;
    right: 7px;
    top: -6px;
}

.popover--bottom-right {
    -webkit-transform-origin: 5% 0%;
    transform-origin: 5% 0%;
}

.popover--top {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}

.popover--top::before {
    background: linear-gradient(135deg, white 0%, #ddd 50%);
    left: 50%;
    bottom: -8px;
    margin-left: -12.5px;
    top: auto;
}

.popover--center {
    left: 50%;
    top: 50%;
    position: fixed;
}

.popover-backdrop--visible .popover--center {
    -webkit-transition: opacity 0.3s 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: opacity 0.3s 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-left: 0;
}

.popover--center::before {
    display: none;
}

.popover__content-wrapper {
    background: #fbfbfb;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
    z-index: 1;
}

.popover__content {
    padding: 2.2em 1.8em;
    -webkit-transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.popover-pane--hidden .popover__content {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
}

.popover__close {
    position: absolute;
    right: 0.5em;
    top: 0.5em;
    -webkit-transition: color 0.3s cubic-bezier(0.3, 0, 0, 1);
    transition: color 0.3s cubic-bezier(0.3, 0, 0, 1);
    z-index: 1;
}

.popover__close .icon--close-modal {
    background-size: 16px;
}

.review-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.review-block ~ .review-block {
    margin-top: 0.85714em;
    padding-top: 0.85714em;
    border-top: 1px solid #e6e6e6;
}

.review-block__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (max-width: 749px) {
    .review-block__inner {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.review-block__label {
    color: #4d4d4d;
    font-weight: 500;
    padding-right: 1.14286em;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (max-width: 749px) {
    .review-block__label {
        padding-bottom: 0.28571em;
    }
}

.review-block__content {
    -webkit-box-flex: 3;
    -webkit-flex: 3;
    -ms-flex: 3;
    flex: 3;
    color: #999999;
    padding-right: 1.14286em;
}

@media (max-width: 749px) {
    .review-block__content {
        width: 100%;
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    }
}

.review-block__link {
    max-width: 10em;
    font-size: 0.85714em;
}
/*!= begin(no-rtl) */

.flag-selector {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: auto;
    right: 0;
    -webkit-transition: all 0.2s cubic-bezier(0, 0.34, 0.1, 0.98);
    transition: all 0.2s cubic-bezier(0, 0.34, 0.1, 0.98);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 0 0.71429rem;
}

.no-js .flag-selector, .no-anyflexbox .flag-selector {
    display: table;
}

.flag-selector::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 0;
    height: 20px;
    border-left: 1px solid transparent;
}

.flag-selector--visible::after {
    border-left-color: #d9d9d9;
    -webkit-animation: scale-up 0.1s cubic-bezier(0, 0.34, 0.1, 0.98) forwards;
    animation: scale-up 0.1s cubic-bezier(0, 0.34, 0.1, 0.98) forwards;
}

.flag-selector--hidden {
    display: none;
}

.flag-selector--focus {
    background: rgba(25,144,198,0.25);
}

.flag-selector--focus::after {
    display: none;
}

.flag-selector__caret {
    display: block;
    margin-left: 0.5em;
}

.no-js .flag-selector__caret, .no-anyflexbox .flag-selector__caret {
    display: table-cell;
    vertical-align: middle;
}

.flag-selector--visible .flag-selector__caret {
    -webkit-animation: fade-in 0.2s cubic-bezier(0, 0.34, 0.1, 0.98) forwards;
    animation: fade-in 0.2s cubic-bezier(0, 0.34, 0.1, 0.98) forwards;
}

.flag-selector--focus .flag-selector__caret {
    fill: #1990c6;
}

.flag-selector__icon {
    height: 20px;
    width: 27px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 2px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-filter: saturate(1.3) hue-rotate(-5deg);
    filter: saturate(1.3) hue-rotate(-5deg);
    opacity: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.no-js .flag-selector__icon, .no-anyflexbox .flag-selector__icon {
    display: table-cell;
    vertical-align: middle;
}

.flag-selector--visible .flag-selector__icon {
    -webkit-animation: scale-up-bounce 0.2s cubic-bezier(0, 0.34, 0.1, 0.98) forwards;
    animation: scale-up-bounce 0.2s cubic-bezier(0, 0.34, 0.1, 0.98) forwards;
}

.flag-selector--hidden .flag-selector__icon {
    -webkit-animation: scale-down-bounce 0.2s cubic-bezier(0.57, 0.31, 0.42, 0.91) forwards;
    animation: scale-down-bounce 0.2s cubic-bezier(0.57, 0.31, 0.42, 0.91) forwards;
}

.flag-selector__select {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
/*!= end(no-rtl) */

.element-toggler {
    -webkit-transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
    overflow: hidden;
    clear: both;
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.element-toggler--visible {
    opacity: 1;
}

.placeholder-line {
    height: 1em;
    border-radius: 4px;
}

.main .placeholder-line {
    background-color: #e6e6e6;
}

.sidebar .placeholder-line {
    background-color: #e1e1e1;
}

.content-box .placeholder-line {
    background-color: #e6e6e6;
}

.default-background .placeholder-line {
    background-color: #e6e6e6;
}

.placeholder-line + .placeholder-line {
    margin-top: 0.5em;
}

.placeholder-line--loose-vertical + .placeholder-line--loose-vertical {
    margin-top: 1.4em;
}

.placeholder-line--full-height {
    height: 100%;
}

.placeholder-line--inline-block {
    display: inline-block;
}

.placeholder-line--animated {
    -webkit-animation: 1.5s linear 0s infinite normal forwards running placeholder-line-loading;
    animation: 1.5s linear 0s infinite normal forwards running placeholder-line-loading;
    background-repeat: no-repeat;
    background-size: 200px 100%;
}

.main .placeholder-line--animated {
    background-image: -webkit-gradient(linear, right top, left top, from(#e6e6e6), color-stop(50%, #cdcdcd), to(#e6e6e6));
    background-image: linear-gradient(to left, #e6e6e6 0%, #cdcdcd 50%, #e6e6e6 100%);
}

.sidebar .placeholder-line--animated {
    background-image: -webkit-gradient(linear, right top, left top, from(#e1e1e1), color-stop(50%, #c8c8c8), to(#e1e1e1));
    background-image: linear-gradient(to left, #e1e1e1 0%, #c8c8c8 50%, #e1e1e1 100%);
}

.content-box .placeholder-line--animated {
    background-image: -webkit-gradient(linear, right top, left top, from(#e6e6e6), color-stop(50%, #cdcdcd), to(#e6e6e6));
    background-image: linear-gradient(to left, #e6e6e6 0%, #cdcdcd 50%, #e6e6e6 100%);
}

.default-background .placeholder-line--animated {
    background-image: -webkit-gradient(linear, right top, left top, from(#e6e6e6), color-stop(50%, #cdcdcd), to(#e6e6e6));
    background-image: linear-gradient(to left, #e6e6e6 0%, #cdcdcd 50%, #e6e6e6 100%);
}

.placeholder-line--fixed-50 {
    width: 50px;
}

.placeholder-line--fixed-120 {
    width: 120px;
}

.placeholder-line--pull-right {
    float: right;
}

.placeholder-line--35 {
    width: 35%;
}

.placeholder-line--40 {
    width: 40%;
}

.placeholder-line--45 {
    width: 45%;
}

.placeholder-line--50 {
    width: 50%;
}

.placeholder-line--55 {
    width: 55%;
}

.placeholder-line--60 {
    width: 60%;
}

.placeholder-line--70 {
    width: 70%;
}

.placeholder-line--75 {
    width: 75%;
}

.placeholder-line--90 {
    width: 90%;
}

.placeholder-line--100 {
    width: 100%;
}

@-webkit-keyframes placeholder-line-loading {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: calc(100% + 200px) 0;
    }
}

@keyframes placeholder-line-loading {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: calc(100% + 200px) 0;
    }
}

.page--stock-problems.page--logo-main .breadcrumb, .page--stock-problems.page--logo-sidebar .main__header, .page--stock-problems.page--logo-banner .main__header {
    display: none;
}

.page--stock-problems .order-summary {
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
}

.stock-problem-table__header th {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 1.5em;
    white-space: nowrap;
    font-weight: 500;
    color: #333333;
}

.stock-problems-table td {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #e6e6e6;
}

.product__clear-btn {
    position: absolute;
    right: -2.5em;
    top: 50%;
    margin-top: -8px;
}

@media (max-width: 749px) {
    .product__clear-btn {
        display: none;
    }
}

.exclamation-mark__circle {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: 50% 50% 0;
    transform-origin: 50% 50% 0;
    stroke: #cccccc;
}

.cssanimations .exclamation-mark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    -webkit-animation: draw-stroke 0.6s 0.4s cubic-bezier(0.3, 0, 0, 1) forwards;
    animation: draw-stroke 0.6s 0.4s cubic-bezier(0.3, 0, 0, 1) forwards;
}

.exclamation-mark__line {
    stroke: #cccccc;
}

.cssanimations .exclamation-mark__line {
    stroke-dasharray: 18;
    stroke-dashoffset: 18;
    -webkit-animation: draw-stroke 0.3s 0.8s cubic-bezier(0.3, 0, 0, 1) forwards;
    animation: draw-stroke 0.3s 0.8s cubic-bezier(0.3, 0, 0, 1) forwards;
}

.exclamation-mark__dot {
    -webkit-transform-origin: 50% 50% 0;
    transform-origin: 50% 50% 0;
    fill: #cccccc;
}

.cssanimations .exclamation-mark__dot {
    -webkit-animation: scale-up 0.3s 1.01s cubic-bezier(0.3, 0, 0, 1) both;
    animation: scale-up 0.3s 1.01s cubic-bezier(0.3, 0, 0, 1) both;
}

.os-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}

@media (min-width: 750px) {
    .os-header {
        margin: 0 0 -0.5em;
    }
}

.os-header__heading {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.os-order-number {
    display: block;
    margin-bottom: 0.25em;
}

.os-header__title {
    font-size: 1.57143em;
}

.os-header__hanging-icon {
    margin-right: 0.75em;
    stroke: #1990c6;
}

@media (min-width: 750px) and (max-width: 999px) {
    .os-header__hanging-icon {
        position: absolute;
        right: 100%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        margin-right: 1.5em;
    }
}

@media (min-width: 1300px) {
    .os-header__hanging-icon {
        position: absolute;
        right: 100%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        margin-right: 1.5em;
    }
}

.map {
    overflow: hidden;
}

.content-box__row:first-child .map {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.map__iframe {
    display: block;
    height: 200px;
    width: calc(100% + 1px);
    z-index: 0;
}

.map__placeholder {
    height: 200px;
    width: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.gm-style .gm-style-iw {
    color: #4d4d4d;
    font-family: Helvetica Neue, sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 400;
    padding-top: 5px;
    text-align: center;
    width: 100%;
}

.gm-style .gm-style-iw + div {
    display: none;
}

.leaflet-popup-content-wrapper {
    -webkit-box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    border-radius: 5px;
    padding: 0;
    text-align: center;
}

.leaflet-popup-content {
    padding: 0.75em 1.5em;
    min-width: 160px;
}

.leaflet-popup-tip-container {
    height: 25px;
}

.leaflet-popup-tip {
    -webkit-filter: drop-shadow(0 3px 4px rgba(0,0,0,0.2));
    filter: drop-shadow(0 3px 4px rgba(0,0,0,0.2));
    border-top-width: 8px;
}

.leaflet-bar, .leaflet-control-layers {
    border: none;
    -webkit-box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.leaflet-bar a, .leaflet-bar a:hover {
    border-bottom: 1px solid #e6e6e6;
}

.leaflet-control-zoom-out {
    border: none !important;
}

.os-timeline-step__title {
    display: block;
    color: #999999;
}

.os-timeline-step__date {
    display: none;
}

.os-timeline-step--selected .os-timeline-step__icon {
    fill: #1990c6;
}

.os-timeline-step--selected .os-timeline-step__title {
    color: #1990c6;
    font-weight: 500;
}

.os-timeline-step--selected .os-timeline-step__date {
    display: block;
    font-size: 0.85714em;
    color: #999999;
}

@media (max-width: 749px) {
    .os-timeline-step:not(.os-timeline-step--current) {
        display: none;
    }

    .os-timeline-step {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .os-timeline-step__title {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
}

@media (min-width: 750px) {
    .os-timeline {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        overflow: hidden;
    }

    .os-timeline-step {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        max-width: 25%;
        position: relative;
        padding-top: 20px;
    }

    .os-timeline-step:before, .os-timeline-step:after {
        content: "";
        display: block;
        height: 2px;
        position: absolute;
        top: 8.5px;
        right: 50%;
    }

    .os-timeline-step:before {
        background: #e6e6e6;
        width: 2000px;
    }

    .os-timeline-step:first-child:after {
        background: #fff;
        left: 0;
        z-index: 2;
    }

    .os-timeline-step__icon {
        fill: #b3b3b3;
        background: #fff;
        background: #fff;
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 3;
    }

    .os-timeline-step__title {
        display: block;
        color: #999999;
    }

    .os-timeline-step__date {
        display: none;
    }

    .os-timeline-step--selected:before {
        background: #1990c6;
        z-index: 1;
    }

    .os-timeline-step--selected .os-timeline-step__icon {
        fill: #1990c6;
    }

    .os-timeline-step--selected .os-timeline-step__title {
        color: #1990c6;
        font-weight: 500;
    }

    .os-timeline-step--selected .os-timeline-step__date {
        display: block;
    }
}

.os-step__title {
    margin: 0.125em 0 0.5em;
}

.os-step__description + .os-step__description {
    margin-top: 0.75em;
}

.os-step__info {
    margin-top: 1em;
}

.os-step__info-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0.75em;
}

.os-step__info-item__icon {
    margin-right: 0.5em;
}

.os-step__special-description + .os-step__special-description {
    border-top: 1px #e6e6e6 solid;
    margin-top: 1.5em;
    padding-top: 1.5em;
}

.tracking-info__number {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    color: #999999;
}

.shipment-information {
    padding: 1em;
}

.shipment-information__items td {
    padding-top: 1em;
}

.shipment-information__item:first-child td {
    padding-top: 0;
}

.shipment-information__image {
    width: 2.5em;
}

.shipment-information__image .product-thumbnail {
    width: 2.5em;
    height: 2.5em;
    border-right: 6px;
}

.shipment-information__image .product-thumbnail__wrapper {
    border-right: 6px;
}

.shipment-information__image .product-thumbnail__quantity {
    font-size: 11px;
    top: -0.65em;
    padding: 0 0.55em;
}

/*label*/
.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    max-width: 100%;
    margin-bottom: 5px;
}

.label-success
{
    background-color: #00a65a !important;
}
.label-warning{
    background-color: #f39c12 !important;
}
.label-default {
    background-color: #d2d6de !important;
    color: #444;
}
.label-danger{
    background-color: #dd4b39 !important;
}
.label-primary{
    background-color: #3c8dbc !important;
}

.label-info {
    background-color: #17a2b8!important;
}

.label-secondary {
    background-color: #6c757d!important;
}

.label-dark {
    background-color: #000!important;
}

.message.message-error
{
    background: #d34423;
    padding: 8px;
    color: #fff;
    border-radius: 4px;
}
.message.message-success
{
    background: #309506;
    padding: 8px;
    color: #fff;
    border-radius: 4px;
}
