.select {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.fixed-region {
    z-index: 10000;
}

.header-region {
    align-items: center;
    background: #fff;
    box-shadow: 1px 1px 1px 1px hsla(0, 0%, 83.9%, .4);
    display: flex;
    height: 87px;
    padding: 3px;
}

@media screen and (max-width:767px) {
    .header-region {
        height: auto;
    }
}

.header-region>.container {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
}

@media screen and (max-width:767px) {
    .header-region>.container {
        justify-content: center;
    }
}

.header-logo-link {
    display: flex;
    margin: 10px 0;
    text-decoration: none;
}

.header-logo {
    height: 47px;
}

@media screen and (max-width:767px) {
    .header-logo {
        height: 25px;
    }
}

.footer-region {
    align-items: center;
    background-color: #f3f3f3;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 300;
    padding: 27px 0;
    margin-top: 20px;
}

.footer-region--no-top-space {
    margin-top: 0;
}

.footer__row {
    align-items: center;
    display: flex;
    justify-content: center;
    list-style: none;
    margin: auto;
    max-width: 1000px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

@media screen and (max-width:767px) {
    .footer__row {
        flex-wrap: wrap;
    }
}

.footer__row-item {
    margin: 10px 0;
}

@media screen and (max-width:767px) {
    .footer__row-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width:320px) {
    .footer__row-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.footer__row-item+.footer__row-item:before {
    color: #6c6c6c;
    content: "|";
    padding: 5px;
}

@media screen and (max-width:767px) {
    .footer__row-item+.footer__row-item:before {
        display: none;
    }
}

.footer__link {
    color: #064870;
    font-size: 10px;
    line-height: 20px;
    font-weight: 500;
    text-decoration: none;
    margin-right: 7px;
    margin-left: 7px;
    white-space: nowrap;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #333;
    display: flex;
    flex-direction: column;
    font-family: Noto Sans, sans-serif;
    font-size: 17px;
    line-height: 1.5;
    margin: 0;
    min-height: 100vh;
    text-align: left;
    transition: padding-top .3s ease;
}

body,
body * {
    box-sizing: border-box;
}

#app,
main {
    display: flex;
    flex-direction: column;
}

p {
    margin: 0;
}

input,
select {
    color: #333;
    font-family: Noto Sans, sans-serif;
    font-size: 17px;
    line-height: 1.5;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

@media(min-width:576px) {
    .container {
        max-width: 540px;
    }
}

@media(min-width:768px) {
    .container {
        max-width: 720px;
    }
}

@media(min-width:992px) {
    .container {
        max-width: 960px;
    }
}

@media(min-width:1200px) {
    .container {
        max-width: 1140px;
    }
}

.fa {
    font-size: 18px;
}

.check {
    align-items: center;
    background-color: #fff;
    border: 1px solid #000;
    display: flex;
    flex-shrink: 0;
    height: 20px;
    justify-content: center;
    width: 20px;
}

.input {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    position: relative;
    width: 100%;
}

.input-field-label {
    font-size: 17px;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.input-field-container {
    display: flex;
    flex-direction: column;
    position: relative;
}

.input-field-prefix {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 46px;
    z-index: 1;
}

.input-field-suffix {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 46px;
    z-index: 1;
}

.input-field-suffix.clickable {
    cursor: pointer;
}

.input-field-mask {
    align-items: center;
    border: 1px solid transparent;
    bottom: 0;
    color: grey;
    display: flex;
    font-family: monospace;
    font-size: 17px;
    left: 0;
    padding: 2px 15px 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 1;
}

.input-field-input {
    border: 1px solid #ddd;
    border-radius: 3px;
    height: 40px;
    outline: none;
    padding: 0 15px;
    width: 100%;
}

.input-field-input:focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    border-color: #409eff;
}

.input-field-input.monospace {
    font-family: monospace;
}

.input.with-prefix .input-field-input {
    padding-left: 46px;
}

.input.with-suffix .input-field-input {
    padding-right: 46px;
}

.iti {
    display: flex;
    width: 100%;
}

.iti__country {
    display: flex;
    align-items: center;
}

.iti__selected-flag {
    outline: none;
}

.radio {
    align-items: center;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    height: 18px;
    justify-content: center;
    width: 18px;
}

.radio div {
    background-color: #000;
    border-radius: 50%;
    height: 12px;
    width: 12px;
}

.select {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    position: relative;
    width: 100%;
}

.select-field-label {
    font-size: 17px;
    margin-bottom: 6px;
    white-space: nowrap;
}

.select-field-container {
    display: flex;
    flex-direction: column;
    position: relative;
}

.select-field-input {
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    height: 40px;
    outline: none;
    padding: 0 15px;
}

.select-field-input:focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    border-color: #409eff;
}

.card_number-field .input-field-prefix img {
    height: 22px;
}

.card_number-field input {
    font-family: Pathway Gothic One, sans-serif !important;
    font-size: 19px !important;
}

.warranty-field {
    background-color: #ebebeb;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 5px;
    box-shadow: 2px 2px 2px 0 #b4b5b5;
    cursor: pointer;
    display: flex;
    padding: 16px 70px;
    position: relative;
    transition: all .3s ease;
}

.warranty-field:hover {
    background-color: hsla(0, 0%, 74.9%, .71);
    background-image: linear-gradient(180deg, #e6e6e6, #ccc);
}

.warranty-field.small {
    padding: 16px 20px 16px 45px;
}

@media screen and (max-width:767px) {
    .warranty-field {
        padding: 16px 40px 16px 50px;
    }
}

.warranty-arrow-left {
    animation: warranty-arrow-left .5s cubic-bezier(.25, .46, .45, .94) infinite alternate both;
    color: #dc003a;
    display: none;
    font-size: 18px;
    position: absolute;
    right: 10px;
    top: 20px;
}

@keyframes warranty-arrow-left {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-10px);
    }
}

.warranty-arrow-right {
    animation: warranty-arrow-right .5s cubic-bezier(.25, .46, .45, .94) infinite alternate both;
    color: #dc003a;
    font-size: 18px;
    left: 10px;
    position: absolute;
    top: 20px;
}

@keyframes warranty-arrow-right {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(10px);
    }
}

.warranty-field-check {
    margin-right: 10px;
    margin-top: 4px;
}

.small .warranty-field-check {
    margin-top: 3px;
}

@media screen and (max-width:767px) {
    .warranty-field-check {
        margin-top: 3px;
    }
}

.warranty-field-label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
}

.warranty-field.small .warranty-field-label {
    font-size: 14px;
}

@media screen and (max-width:767px) {

    .warranty-field-label,
    .warranty-field.small .warranty-field-label {
        font-size: 14px;
    }
}

.form {
    display: flex;
    flex-wrap: wrap;
    transition: all .3s ease;
}

.credit-cards-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -4px;
}

.credit-card-item {
    display: flex;
    flex-direction: column;
    margin: 4px;
}

.credit-card-item img {
    max-width: 56px;
}

.credit-cards {
    align-items: center;
    background-image: linear-gradient(#0f9b0f, #0d840d);
    border-radius: 3px;
    box-shadow: 2px 2px 2px 0 #b4b5b5;
    cursor: pointer;
    display: flex;
    padding: 15px;
    position: relative;
    margin-top: 10px;
}

.credit-cards:hover {
    background-image: linear-gradient(180deg, #6d4, #3d6c04);
}

.credit-cards .credit-cards-list {
    margin-top: 8px;
}

.credit-cards-arrow {
    align-items: center;
    background-color: hsla(0, 0%, 100%, .3);
    border-radius: 0 50% 50% 0;
    bottom: 0;
    color: #fff;
    display: flex;
    font-size: 18px;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all .2s linear;
    width: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path fill='%23Ffff' d='M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z'></path></svg>");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: 50%;
}

.credit-cards:hover .credit-cards-arrow {
    opacity: 1;
    width: 30px;
}

.credit-cards-radio {
    background-color: transparent;
    border-color: #fff;
}

.credit-cards-radio div {
    background-color: #fff;
}

.credit-cards>.inside {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
}

.credit-cards-label {
    color: #fff;
    font-family: Noto Sans, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-shadow: rgba(0, 0, 0, .3) -1px -1px 0;
    text-transform: capitalize;
}

.paypal-button {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.paypal-button-original {
    height: 55px;
    overflow: hidden;
}

.paypal-button-shim {
    align-items: center;
    background-color: #ffc438;
    background-image: linear-gradient(#fff0a8, #f9b421);
    border: 1px solid #feae01;
    border-radius: 5px;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
}

.paypal-button-shim.active {
    pointer-events: none;
}

.paypal-button:hover .paypal-button-shim.active {
    background-image: linear-gradient(#f9b421, #fff0a8);
}

.paypal-button-arrow {
    align-items: center;
    background-color: hsla(0, 0%, 100%, .3);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path fill='%23Ffff' d='M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z'></path></svg>");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 0 50% 50% 0;
    bottom: 0;
    color: #000;
    display: flex;
    font-size: 18px;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all .2s linear;
    width: 0;
}

.paypal-button:hover .paypal-button-shim.active .paypal-button-arrow {
    opacity: 1;
    width: 30px;
}

.paypal-button-label {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.paypal-button-image {
    margin-left: 10px;
    margin-top: -2px;
    max-width: 90px;
}

.pay-card-button {
    display: flex;
    flex-direction: column;
    position: relative;
}

.pay-card-button.active {
    cursor: pointer;
}

.recently-bought {
    background-color: #fff;
    box-shadow: 1px 1px 23px 0 rgba(89, 89, 89, .2392156863);
    border: 1px solid rgba(0, 0, 0, .2588235294);
    border-radius: 40px;
    padding: 2px;
    bottom: 16px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    color: #606266;
    font-size: 14px;
    left: 16px;
    line-height: 21px;
    overflow: hidden;
    position: fixed;
    transition: opacity .3s, transform .3s, left .3s, right .3s, top .4s, bottom .3s;
    width: 330px;
    z-index: 2000;
}

.recently-bought:hover {
    box-shadow: 1px 1px 30px 0 rgba(89, 89, 89, .2392156863);
}

.recently-bought:hover .recently-notice__close {
    display: block;
}

.recently-bought p {
    margin: 0;
}

.recently-notice {
    color: #0a0f0a;
    display: flex;
    align-items: center;
}

.recently-notice__left {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    text-align: center;
}

.recently-notice__left img {
    height: 100%;
}

.recently-notice__right {
    flex-grow: 1;
    padding: 5px 10px;
}

.recently-notice__close {
    font-weight: 700;
    font-size: 20px;
    position: absolute;
    color: grey;
    right: 21px;
    bottom: 12px;
    cursor: pointer;
    display: none;
}

@media screen and (max-width:767px) {
    .recently-notice__close {
        display: block;
    }
}

.header-region {
    box-shadow: none;
    height: auto;
    padding: 13px 0;
    z-index: 1;
    max-width: 967px;
    margin: 0 auto;
    width: 100%;
}

.header-region>.container {
    justify-content: flex-start;
    flex-direction: column;
}

@media(min-width:768px) {
    .header-region>.container {
        flex-direction: row;
        margin: 0;
    }
}

.header-region .header-logo-link {
    margin: 0 0 15px;
}

@media(min-width:768px) {
    .header-region .header-logo-link {
        margin: 0;
    }
}

.header-region .header-logo {
    height: 75px;
}

.secure-checkout {
    margin-bottom: 15px;
}

@media(min-width:768px) {
    .secure-checkout {
        margin-bottom: 0;
    }
}

.secure-checkout .inside {
    padding-left: 12px;
    align-items: center;
    display: flex;
    justify-content: center;
}

@media(min-width:768px) {
    .secure-checkout .inside {
        margin-left: 16px;
        border-left: 1px solid #b8b8b8;
    }
}

.secure-checkout .image {
    margin-right: 5px;
    max-width: 18px;
}

.secure-checkout .text {
    color: #404040;
    font-size: 16px;
    line-height: 1;
    font-family: Roboto, sans-serif;
}

.header-right-side {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
}

@media(max-width:768px) {
    .header-right-side {
        flex-direction: column;
    }
}

.footer-region {
    background-color: #00324e;
}

.footer-region .footer__link {
    color: hsla(0, 0%, 100%, .4);
}

.header-after {
    max-width: 967px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

@media(max-width:768px) {
    .header-after {
        padding: 0 10px;
    }
}

@media(min-width:768px) {
    .header-after {
        padding: 0;
    }
}

.header-after .product-discount {
    text-transform: uppercase;
    font-size: 22px;
    text-align: center;
    line-height: 26px;
    font-family: Roboto, sans-serif;
    margin: 30px 0;
}

.header-after .product-discount span {
    color: #e74c3c;
}

.discount-banner {
    background: rgba(48, 189, 81, .5);
    box-shadow: 0 0 8px 2px rgba(0, 0, 0, .25);
    border-radius: 10px;
    margin-bottom: 20px;
    color: #035b18;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px 0 20px;
    font-size: 18px;
}

@media(max-width:768px) {
    .discount-banner {
        padding-top: 26px;
        padding-bottom: 24px;
        height: auto;
    }
}

.discount-banner .check-mark {
    margin-right: 10px;
}

.main-content {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    width: 100%;
}

@media(min-width:768px) {
    .main-content {
        flex-direction: row;
        margin-left: auto;
        margin-right: auto;
        max-width: 970px;
    }
}

.left-column {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 0 15px;
}

@media(min-width:768px) {
    .left-column {
        width: 50%;
    }
}

.right-column {
    display: flex;
    flex-direction: column;
    margin: 35px 15px 0;
}

@media(min-width:768px) {
    .right-column {
        margin-top: 0;
        width: 50%;
    }
}

@media(min-width:992px) {
    .right-column {
        width: 380px;
    }
}

.warranty-field {
    margin-bottom: 20px;
}

.input,
.select {
    margin: 0 0 15px;
}

.input-field-label {
    color: #333;
    font-size: 15px;
    pointer-events: none;
    transition: all .1s ease-in;
    margin: 0 0 11px;
}

.input-field-input,
.select-field-input {
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 3px;
    color: #000;
    font-size: 16px;
    height: 50px;
    line-height: 1.15;
    padding: 0 18px;
}

.input-field-input:focus,
.select-field-input:focus {
    border-color: rgba(0, 0, 0, .2);
    box-shadow: none;
}

.input-field-input::-moz-placeholder,
.select-field-input::-moz-placeholder {
    color: transparent;
}

.card_date-field .input-field-input::-moz-placeholder,
.card_number-field .input-field-input::-moz-placeholder,
.phone-field .input-field-input::-moz-placeholder {
    color: #777;
}

.card_date-field .input-field-input,
.card_number-field .input-field-input,
.phone-field .input-field-input {
    padding-top: 0;
}

.select-field-input {
    padding: 0 14px;
    -webkit-appearance: none;
    position: relative;
}

.input-field-mask {
    padding: 0 18px;
}

.card_cvv-field,
.card_date-field,
.first_name-field,
.last_name-field {
    width: 48%;
}

.card_cvv-field,
.last_name-field {
    margin-left: auto;
}

.pay-card-button {
    background-color: #29af5c;
    border-radius: 3px;
    box-shadow: 0 3px 0 #0f6a28;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.467;
    margin: 15px auto 0;
    padding: 18px 15px 17px;
    text-align: center;
    text-transform: uppercase;
    transition: all .25s ease;
}

@media(min-width:768px) {
    .pay-card-button {
        width: 100%;
    }
}

.pay-card-button:hover {
    transform: scale(1.025);
}

.select-field-container:after {
    content: url(../assets/arrow.svg);
    position: absolute;
    top: 50%;
    transform: translateY(-8%);
    right: 5px;
    height: 100%;
    font-size: 60%;
    padding: 0 10px;
    background: transparent;
    color: #000;
    pointer-events: none;
}

.title-container-c {
    border-bottom: 2px solid #ddd;
    padding-bottom: 4px;
    margin-bottom: 16px;
}

.title-container-c .title-step:after {
    counter-increment: section-step;
    content: counter(section-step);
    display: inline;
}

.title-c {
    line-height: 19px;
    font-weight: 300;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-c.bigger {
    font-size: 18px;
    text-transform: uppercase;
    line-height: 23.4px;
}

.title-subrow-c {
    padding-top: 7px;
    font-size: 12px;
    line-height: 18px;
    display: flex;
    align-items: center;
}

.title-subrow-c .icon {
    margin-right: 6px;
}

.title-lowest-price {
    color: #30bd51;
    font-weight: 400;
    font-size: 16px;
    text-transform: none;
    line-height: 35px;
}

.title-lowest-price img {
    vertical-align: middle;
}

.wcu {
    color: #333;
}

.wcu__content {
    display: flex;
    flex-direction: column;
    grid-row-gap: 32px;
}

.wcu__row {
    display: flex;
    grid-column-gap: 5px;
    align-items: center;
}

.wcu__text>div {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 4px;
}

.wcu__text>div+div {
    font-size: 13px;
    line-height: 15px;
}

.wcu__icon {
    max-width: 61px;
    width: 100%;
}

.users-online {
    align-items: center;
    display: flex;
    margin: 10px 15px 0 0;
    justify-content: flex-start;
}

.users-online .magnifier {
    max-width: 100%;
}

.users-online .text {
    color: #2e98f8;
    display: flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    padding-left: 10px;
    position: relative;
    align-items: center;
}

.users-online .text .value {
    transition: all 1s ease;
}

.users-online .text .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #e74c3c;
    border-radius: 50%;
    margin-left: 3px;
    animation: blinker-dot 3s infinite;
}

@keyframes blinker-dot {
    50% {
        opacity: 0;
    }
}

.deals {
    display: flex;
    flex-direction: column;
    grid-row-gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 52px;
}

@media(min-width:768px) {
    .deals {
        flex-direction: row;
        grid-row-gap: 0;
        grid-column-gap: 20px;
    }
}

.deals .deal {
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
    position: relative;
    outline: 1px solid #858585;
    justify-content: center;
    max-width: 300px;
    width: 100%;
    box-sizing: content-box;
    transition: all .1s ease-in;
}

.deals .deal:hover {
    background: hsla(0, 0%, 52.2%, .1);
}

@media(max-width:768px) {
    .deals .deal {
        max-width: 100%;
        position: relative;
    }
}

@media(min-width:992px) {
    .deals .deal {
        padding-bottom: 20px;
    }
}

.deals .deal:first-child {
    padding-top: 15px;
}

@media(max-width:768px) {
    .deals .deal:first-child .deal-image {
        top: 15px;
    }
}

.deals .deal:last-child {
    background: hsla(0, 0%, 52.2%, .1);
    outline: 2px solid hsla(0, 0%, 52.2%, .4);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

.deals .deal:last-child:hover {
    background-color: hsla(0, 0%, 52.2%, .05);
}

.deals .deal.primary {
    outline: 1px solid #ffe15a;
    background: rgba(255, 225, 90, .2);
    border: 5px solid #ffe15a;
}

.deals .deal.primary .deal-title {
    background-color: #ffe15a;
}

.deals .deal.primary:hover {
    background: rgba(255, 225, 90, .1);
}

.deals .deal.selected {
    outline: 1px solid #30bd51;
    background: rgba(48, 189, 81, .1);
    border: 5px solid #30bd51;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    max-width: 290px;
    width: 100%;
}

.deals .deal.selected:hover {
    background: rgba(48, 189, 81, .05);
}

@media(max-width:768px) {
    .deals .deal.selected {
        max-width: calc(100% - 10px);
        position: relative;
    }
}

.deals .deal.selected .deal-title {
    background: #30bd51;
    color: #fff;
}

.deals .deal-title {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 18.75px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 11px;
    font-weight: 700;
    background: hsla(0, 0%, 52.2%, .1);
    color: #333;
}

@media(max-width:768px) {
    .deals .deal-title {
        justify-content: center;
    }
}

.deals .deal-title img {
    margin-right: 10px;
    margin-top: -5px;
}

.deals .deal-content,
.deals .deal-title.center {
    justify-content: center;
}

.deals .deal-content {
    display: flex;
    text-align: center;
    padding: 16px 15px 0;
}

@media(max-width:768px) {
    .deals .deal-content {
        justify-content: flex-start;
        padding-left: 14px;
        padding-right: 12px;
    }
}

.deals .deal-label {
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    color: #333;
}

@media(max-width:768px) {
    .deals .deal-label {
        text-align: left;
    }
}

.deals .deal-columns {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media(max-width:768px) {
    .deals .deal-columns {
        flex-direction: row;
        padding: 0 12px;
    }
}

@media(min-width:992px) {
    .deals .deal-columns {
        flex-direction: column;
    }
}

.deals .deal-image {
    display: flex;
    flex-direction: column;
    margin: 10px auto 0;
}

@media(max-width:768px) {
    .deals .deal-image {
        margin-top: 0;
        position: absolute;
        top: 50px;
        right: 0;
    }
}

.deals .deal-image img {
    max-height: 211px;
    max-width: 100%;
}

@media(max-width:768px) {
    .deals .deal-image img {
        max-height: 156px;
    }
}

@media(min-width:992px) {
    .deals .deal-image img {
        max-height: 211px;
    }
}

.deals .deal-prices {
    align-self: center;
    display: flex;
    flex-direction: column;
    padding-left: 35px;
    margin-top: 15px;
}

@media(max-width:768px) {
    .deals .deal-prices {
        padding-left: 0;
        margin-top: 5px;
    }
}

@media(min-width:992px) {
    .deals .deal-prices {
        align-items: center;
        padding-left: 0;
        padding-bottom: 20px;
    }
}

.deals .deal-advantages {
    text-transform: uppercase;
    padding-left: 0;
    margin-bottom: 0;
    color: #2e98f8;
    list-style-position: inside;
    padding-right: 0;
}

.deals .deal-old-price {
    color: #e74c3c;
    font-size: 16px;
    text-decoration: line-through;
    line-height: 19px;
}

.deals .deal-new-price,
.deals .deal-old-price {
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.deals .deal-new-price {
    color: #000;
    display: flex;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
}

.summary {
    display: flex;
    flex-direction: column;
    margin-top: 35px;
    margin-bottom: 30px;
}

.summary .deals-line {
    display: flex;
    justify-content: space-between;
}

.summary .deals-line .left {
    font-size: 13px;
}

.summary .deals-line .right {
    font-size: 14px;
}

.summary .deal-summary {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    align-items: flex-start;
    margin-top: 15px;
}

.summary .deal-summary .image {
    max-width: 100px;
}

.summary .total-block {
    display: flex;
    justify-content: space-between;
}

.summary .total-block {
    align-items: center;
    background-color: rgba(248, 231, 28, .2);
    border: 1px dashed #ea0013;
    border-radius: 3px;
    margin-top: 20px;
}

.summary .total-block .image {
    margin: 20px 0;
}

.summary .total-block .image img {
    max-width: 200px;
}

.summary .total-block .prices {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    margin-right: 10px;
}

.summary .total-block .prices .old {
    color: red;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    text-decoration: line-through;
}

.summary .total-block .prices .total {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin-top: 15px;
}

.paypal-button+.google-pay-section {
    margin-top: 10px;
}

.google-pay-wrapper {
    position: relative;
}

.google-pay-wrapper.active {
    cursor: pointer;
}

.guarantee {
    margin-top: 15px;
}

.guarantee,
.guarantee .section1,
.guarantee .section1 .title {
    display: flex;
    flex-direction: column;
}

.guarantee .section1 .title {
    align-items: center;
    position: relative;
}

.guarantee .section1 .title:before {
    content: "";
    border-top: 2px solid #29af5c;
    display: block;
    position: absolute;
    top: 15px;
    width: 100%;
    z-index: 1;
}

.guarantee .section1 .title .value {
    background-color: #fff;
    color: #000;
    font-size: 15px;
    line-height: 1.467;
    margin: 0 auto;
    padding: 5px 10px;
    position: relative;
    text-transform: uppercase;
    z-index: 2;
}

.guarantee .section1 .image {
    align-self: center;
    max-width: 100%;
}

.reviews {
    display: flex;
    flex-direction: column;
    margin: 50px 0;
    width: 100%;
}

@media(min-width:768px) {
    .reviews {
        margin-left: auto;
        margin-right: auto;
        max-width: 970px;
    }
}

.reviews>.inside {
    display: flex;
    flex-direction: column;
    margin: 0;
    grid-row-gap: 20px;
}

@media(min-width:768px) {
    .reviews>.inside {
        flex-direction: column;
    }
}

.reviews .review {
    display: flex;
    margin-bottom: 15px;
    width: 100%;
}

@media(min-width:768px) {
    .reviews .review {
        margin-bottom: 0;
    }
}

.reviews .review>.inside {
    display: flex;
    margin: 0;
    width: 100%;
}

.reviews .image {
    align-self: flex-start;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.reviews .content {
    display: flex;
    flex-direction: column;
}

.reviews .name {
    color: #3658a6;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews .city {
    color: #999;
    font-size: 12px;
    font-weight: 400;
}

.reviews .text {
    color: #000;
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 12px;
}

.reviews .bottom {
    display: flex;
}

.reviews .like {
    color: #3658a6;
    font-size: 11px;
    line-height: 1.467;
}

.reviews .reply {
    color: #3658a6;
    font-size: 12px;
    line-height: 1.28571429;
    margin-left: 3px;
}

.reviews .likes {
    color: #3658a6;
    font-size: 11px;
    line-height: 1.467;
    margin-left: 3px;
}

.reviews .likes i {
    font-size: 11px;
    margin-right: 3px;
}

.reviews .date {
    color: #999;
    font-size: 11px;
    line-height: 1.467;
    margin-left: 3px;
}

.question {
    align-items: center;
    background-color: #eee;
    color: #000;
    display: flex;
    font-size: 16px;
    justify-content: center;
    line-height: 1.35em;
    padding: 20px 0;
    text-align: center;
}

.question a {
    color: #000 !important;
    text-decoration: underline !important;
}

.amc82 {
    color: #333;
    display: flex;
    flex-direction: column;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.467;
    margin-bottom: 50px;
    padding: 0 20px;
    counter-reset: section-step;
}

@media(min-width:768px) {
    .amc82 {
        padding: 0;
    }
}

@media(max-width:992px) {
    .amc82 {
        padding: 0 10px;
    }
}

.amc82 .only-desktop,
.amc82 .only-less-than-desktop {
    display: none;
}

@media(max-width:768px) {
    .amc82 .only-less-than-desktop {
        display: block;
    }
}

@media(min-width:768px) {
    .amc82 .only-desktop {
        display: block;
    }
}

.amc82 input,
.amc82 select {
    color: #000;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.15;
    background-color: #f7f7f8;
}

.amc82 .left-column {
    margin: 0;
}

@media(min-width:768px) {
    .amc82 .left-column {
        max-width: 352px;
    }
}

@media(max-width:500px) {
    .amc82 .left-column .wcu {
        order: 1;
    }

    .amc82 .left-column .summary {
        order: -1;
    }

    .amc82 .left-column .reviews {
        order: 0;
    }

    .amc82 .left-column .pay-button {
        order: 2;
    }
}

.amc82 .right-column {
    width: 100%;
    margin: -4px 0 0;
}

.amc82 .main-content {
    flex-direction: column;
}

.amc82 .main-content--inside {
    justify-content: space-between;
    grid-column-gap: 20px;
    flex-direction: column-reverse;
}

@media(min-width:768px) {
    .amc82 .main-content--inside {
        flex-direction: row;
    }
}

@media(max-width:768px) {
    .amc82 .main-content--inside {
        margin-top: 0;
    }
}

.amc82 .main-content .right-block {
    margin-bottom: 25px;
}

.amc82 .warranty-field {
    background-color: rgba(46, 152, 248, .25);
    justify-content: center;
}

.amc82 .warranty-field .warranty-arrow-right {
    top: 18px;
    left: 10px;
}

.amc82 .warranty-field .warranty-arrow-left {
    top: 18px;
    right: 10px;
}

@media(min-width:992px) {
    .amc82 .warranty-field .warranty-arrow-right {
        left: 45px;
    }

    .amc82 .warranty-field .warranty-arrow-left {
        right: 45px;
    }
}

.amc82 .credit-cards-list {
    margin-top: 0;
}

.amc82 .credit-cards-label {
    font-family: Roboto, sans-serif;
}

.amc82 .credit-cards>.inside {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.amc82 .pay-card-button {
    font-family: Roboto, sans-serif;
}

.amc82 .pay-card-button .label {
    text-transform: none;
    font-weight: 400;
}

.amc82 .pay-card-button .label .title {
    font-size: 26px;
    line-height: 30.5px;
    font-weight: 700;
}

.amc82 .pay-card-button .label .subtitle {
    text-transform: lowercase;
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3GUBGEe.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3iUBGEe.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3CUBGEe.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3-UBGEe.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMawCUBGEe.woff2) format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMaxKUBGEe.woff2) format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3OUBGEe.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3KUBGEe.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3GUBGEe.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3iUBGEe.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3CUBGEe.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3-UBGEe.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMawCUBGEe.woff2) format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMaxKUBGEe.woff2) format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3OUBGEe.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3KUBGEe.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3GUBGEe.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3iUBGEe.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3CUBGEe.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3-UBGEe.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMawCUBGEe.woff2) format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMaxKUBGEe.woff2) format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3OUBGEe.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3KUBGEe.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3GUBGEe.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3iUBGEe.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3CUBGEe.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3-UBGEe.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMawCUBGEe.woff2) format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMaxKUBGEe.woff2) format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3OUBGEe.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3KUBGEe.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3GUBGEe.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3iUBGEe.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3CUBGEe.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3-UBGEe.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMawCUBGEe.woff2) format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMaxKUBGEe.woff2) format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3OUBGEe.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3KUBGEe.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.iti {
    position: relative;
    display: inline-block;
}

.iti * {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.iti__hide {
    display: none;
}

.iti input {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0;
}

.iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px;
}

.iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 6px 0 8px;
}

.iti__arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555;
}

.iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 500px) {
    .iti__country-list {
        white-space: normal;
    }
}

.iti__flag-box {
    display: inline-block;
    width: 20px;
}

.iti__divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #CCC;
}

.iti__country {
    padding: 5px 10px;
    outline: none;
}

.iti__dial-code {
    color: #999;
}

.iti__flag-box,
.iti__country-name,
.iti__dial-code {
    vertical-align: middle;
}

.iti__flag-box,
.iti__country-name {
    margin-right: 6px;
}

.iti--allow-dropdown input,
.iti--separate-dial-code input {
    padding-right: 6px;
    padding-left: 90px;
    margin-left: 0;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 0;
}

.iti--allow-dropdown .iti__flag-container:hover {
    cursor: pointer;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.05);
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.05);
}

.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px;
}

.iti__flag {
    width: 20px;
}

.iti__flag.iti__be {
    width: 18px;
}

.iti__flag.iti__ch {
    width: 15px;
}

.iti__flag.iti__mc {
    width: 19px;
}

.iti__flag.iti__ne {
    width: 18px;
}

.iti__flag.iti__np {
    width: 13px;
}

.iti__flag.iti__va {
    width: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .iti__flag {
        background-size: 5652px 15px;
    }
}

.iti__flag.iti__ac {
    height: 10px;
    background-position: 0px 0px;
}

.iti__flag.iti__ad {
    height: 14px;
    background-position: -22px 0px;
}

.iti__flag.iti__ae {
    height: 10px;
    background-position: -44px 0px;
}

.iti__flag.iti__af {
    height: 14px;
    background-position: -66px 0px;
}

.iti__flag.iti__ag {
    height: 14px;
    background-position: -88px 0px;
}

.iti__flag.iti__ai {
    height: 10px;
    background-position: -110px 0px;
}

.iti__flag.iti__al {
    height: 15px;
    background-position: -132px 0px;
}

.iti__flag.iti__am {
    height: 10px;
    background-position: -154px 0px;
}

.iti__flag.iti__ao {
    height: 14px;
    background-position: -176px 0px;
}

.iti__flag.iti__ar {
    height: 13px;
    background-position: -220px 0px;
}

.iti__flag.iti__as {
    height: 10px;
    background-position: -242px 0px;
}

.iti__flag.iti__at {
    height: 14px;
    background-position: -264px 0px;
}

.iti__flag.iti__au {
    height: 10px;
    background-position: -286px 0px;
}

.iti__flag.iti__aw {
    height: 14px;
    background-position: -308px 0px;
}

.iti__flag.iti__ax {
    height: 13px;
    background-position: -330px 0px;
}

.iti__flag.iti__az {
    height: 10px;
    background-position: -352px 0px;
}

.iti__flag.iti__ba {
    height: 10px;
    background-position: -374px 0px;
}

.iti__flag.iti__bb {
    height: 14px;
    background-position: -396px 0px;
}

.iti__flag.iti__bd {
    height: 12px;
    background-position: -418px 0px;
}

.iti__flag.iti__be {
    height: 15px;
    background-position: -440px 0px;
}

.iti__flag.iti__bf {
    height: 14px;
    background-position: -460px 0px;
}

.iti__flag.iti__bg {
    height: 12px;
    background-position: -482px 0px;
}

.iti__flag.iti__bh {
    height: 12px;
    background-position: -504px 0px;
}

.iti__flag.iti__bi {
    height: 12px;
    background-position: -526px 0px;
}

.iti__flag.iti__bj {
    height: 14px;
    background-position: -548px 0px;
}

.iti__flag.iti__bl {
    height: 14px;
    background-position: -570px 0px;
}

.iti__flag.iti__bm {
    height: 10px;
    background-position: -592px 0px;
}

.iti__flag.iti__bn {
    height: 10px;
    background-position: -614px 0px;
}

.iti__flag.iti__bo {
    height: 14px;
    background-position: -636px 0px;
}

.iti__flag.iti__bq {
    height: 14px;
    background-position: -658px 0px;
}

.iti__flag.iti__br {
    height: 14px;
    background-position: -680px 0px;
}

.iti__flag.iti__bs {
    height: 10px;
    background-position: -702px 0px;
}

.iti__flag.iti__bt {
    height: 14px;
    background-position: -724px 0px;
}

.iti__flag.iti__bw {
    height: 14px;
    background-position: -768px 0px;
}

.iti__flag.iti__by {
    height: 10px;
    background-position: -790px 0px;
}

.iti__flag.iti__bz {
    height: 14px;
    background-position: -812px 0px;
}

.iti__flag.iti__ca {
    height: 10px;
    background-position: -834px 0px;
}

.iti__flag.iti__cc {
    height: 10px;
    background-position: -856px 0px;
}

.iti__flag.iti__cd {
    height: 15px;
    background-position: -878px 0px;
}

.iti__flag.iti__cf {
    height: 14px;
    background-position: -900px 0px;
}

.iti__flag.iti__cg {
    height: 14px;
    background-position: -922px 0px;
}

.iti__flag.iti__ch {
    height: 15px;
    background-position: -944px 0px;
}

.iti__flag.iti__ci {
    height: 14px;
    background-position: -961px 0px;
}

.iti__flag.iti__ck {
    height: 10px;
    background-position: -983px 0px;
}

.iti__flag.iti__cl {
    height: 14px;
    background-position: -1005px 0px;
}

.iti__flag.iti__cm {
    height: 14px;
    background-position: -1027px 0px;
}

.iti__flag.iti__cn {
    height: 14px;
    background-position: -1049px 0px;
}

.iti__flag.iti__co {
    height: 14px;
    background-position: -1071px 0px;
}

.iti__flag.iti__cr {
    height: 12px;
    background-position: -1115px 0px;
}

.iti__flag.iti__cu {
    height: 10px;
    background-position: -1137px 0px;
}

.iti__flag.iti__cv {
    height: 12px;
    background-position: -1159px 0px;
}

.iti__flag.iti__cw {
    height: 14px;
    background-position: -1181px 0px;
}

.iti__flag.iti__cx {
    height: 10px;
    background-position: -1203px 0px;
}

.iti__flag.iti__cy {
    height: 14px;
    background-position: -1225px 0px;
}

.iti__flag.iti__cz {
    height: 14px;
    background-position: -1247px 0px;
}

.iti__flag.iti__de {
    height: 12px;
    background-position: -1269px 0px;
}

.iti__flag.iti__dj {
    height: 14px;
    background-position: -1313px 0px;
}

.iti__flag.iti__dk {
    height: 15px;
    background-position: -1335px 0px;
}

.iti__flag.iti__dm {
    height: 10px;
    background-position: -1357px 0px;
}

.iti__flag.iti__do {
    height: 14px;
    background-position: -1379px 0px;
}

.iti__flag.iti__dz {
    height: 14px;
    background-position: -1401px 0px;
}

.iti__flag.iti__ec {
    height: 14px;
    background-position: -1445px 0px;
}

.iti__flag.iti__ee {
    height: 13px;
    background-position: -1467px 0px;
}

.iti__flag.iti__eg {
    height: 14px;
    background-position: -1489px 0px;
}

.iti__flag.iti__eh {
    height: 10px;
    background-position: -1511px 0px;
}

.iti__flag.iti__er {
    height: 10px;
    background-position: -1533px 0px;
}

.iti__flag.iti__es {
    height: 14px;
    background-position: -1555px 0px;
}

.iti__flag.iti__et {
    height: 10px;
    background-position: -1577px 0px;
}

.iti__flag.iti__fi {
    height: 12px;
    background-position: -1621px 0px;
}

.iti__flag.iti__fj {
    height: 10px;
    background-position: -1643px 0px;
}

.iti__flag.iti__fk {
    height: 10px;
    background-position: -1665px 0px;
}

.iti__flag.iti__fm {
    height: 11px;
    background-position: -1687px 0px;
}

.iti__flag.iti__fo {
    height: 15px;
    background-position: -1709px 0px;
}

.iti__flag.iti__fr {
    height: 14px;
    background-position: -1731px 0px;
}

.iti__flag.iti__ga {
    height: 15px;
    background-position: -1753px 0px;
}

.iti__flag.iti__gb {
    height: 10px;
    background-position: -1775px 0px;
}

.iti__flag.iti__gd {
    height: 12px;
    background-position: -1797px 0px;
}

.iti__flag.iti__ge {
    height: 14px;
    background-position: -1819px 0px;
}

.iti__flag.iti__gf {
    height: 14px;
    background-position: -1841px 0px;
}

.iti__flag.iti__gg {
    height: 14px;
    background-position: -1863px 0px;
}

.iti__flag.iti__gh {
    height: 14px;
    background-position: -1885px 0px;
}

.iti__flag.iti__gi {
    height: 10px;
    background-position: -1907px 0px;
}

.iti__flag.iti__gl {
    height: 14px;
    background-position: -1929px 0px;
}

.iti__flag.iti__gm {
    height: 14px;
    background-position: -1951px 0px;
}

.iti__flag.iti__gn {
    height: 14px;
    background-position: -1973px 0px;
}

.iti__flag.iti__gp {
    height: 14px;
    background-position: -1995px 0px;
}

.iti__flag.iti__gq {
    height: 14px;
    background-position: -2017px 0px;
}

.iti__flag.iti__gr {
    height: 14px;
    background-position: -2039px 0px;
}

.iti__flag.iti__gt {
    height: 13px;
    background-position: -2083px 0px;
}

.iti__flag.iti__gu {
    height: 11px;
    background-position: -2105px 0px;
}

.iti__flag.iti__gw {
    height: 10px;
    background-position: -2127px 0px;
}

.iti__flag.iti__gy {
    height: 12px;
    background-position: -2149px 0px;
}

.iti__flag.iti__hk {
    height: 14px;
    background-position: -2171px 0px;
}

.iti__flag.iti__hn {
    height: 10px;
    background-position: -2215px 0px;
}

.iti__flag.iti__hr {
    height: 10px;
    background-position: -2237px 0px;
}

.iti__flag.iti__ht {
    height: 12px;
    background-position: -2259px 0px;
}

.iti__flag.iti__hu {
    height: 10px;
    background-position: -2281px 0px;
}

.iti__flag.iti__id {
    height: 14px;
    background-position: -2325px 0px;
}

.iti__flag.iti__ie {
    height: 10px;
    background-position: -2347px 0px;
}

.iti__flag.iti__il {
    height: 15px;
    background-position: -2369px 0px;
}

.iti__flag.iti__im {
    height: 10px;
    background-position: -2391px 0px;
}

.iti__flag.iti__in {
    height: 14px;
    background-position: -2413px 0px;
}

.iti__flag.iti__io {
    height: 10px;
    background-position: -2435px 0px;
}

.iti__flag.iti__iq {
    height: 14px;
    background-position: -2457px 0px;
}

.iti__flag.iti__ir {
    height: 12px;
    background-position: -2479px 0px;
}

.iti__flag.iti__is {
    height: 15px;
    background-position: -2501px 0px;
}

.iti__flag.iti__it {
    height: 14px;
    background-position: -2523px 0px;
}

.iti__flag.iti__je {
    height: 12px;
    background-position: -2545px 0px;
}

.iti__flag.iti__jm {
    height: 10px;
    background-position: -2567px 0px;
}

.iti__flag.iti__jo {
    height: 10px;
    background-position: -2589px 0px;
}

.iti__flag.iti__jp {
    height: 14px;
    background-position: -2611px 0px;
}

.iti__flag.iti__ke {
    height: 14px;
    background-position: -2633px 0px;
}

.iti__flag.iti__kg {
    height: 12px;
    background-position: -2655px 0px;
}

.iti__flag.iti__kh {
    height: 13px;
    background-position: -2677px 0px;
}

.iti__flag.iti__ki {
    height: 10px;
    background-position: -2699px 0px;
}

.iti__flag.iti__km {
    height: 12px;
    background-position: -2721px 0px;
}

.iti__flag.iti__kn {
    height: 14px;
    background-position: -2743px 0px;
}

.iti__flag.iti__kp {
    height: 10px;
    background-position: -2765px 0px;
}

.iti__flag.iti__kr {
    height: 14px;
    background-position: -2787px 0px;
}

.iti__flag.iti__kw {
    height: 10px;
    background-position: -2809px 0px;
}

.iti__flag.iti__ky {
    height: 10px;
    background-position: -2831px 0px;
}

.iti__flag.iti__kz {
    height: 10px;
    background-position: -2853px 0px;
}

.iti__flag.iti__la {
    height: 14px;
    background-position: -2875px 0px;
}

.iti__flag.iti__lb {
    height: 14px;
    background-position: -2897px 0px;
}

.iti__flag.iti__lc {
    height: 10px;
    background-position: -2919px 0px;
}

.iti__flag.iti__li {
    height: 12px;
    background-position: -2941px 0px;
}

.iti__flag.iti__lk {
    height: 10px;
    background-position: -2963px 0px;
}

.iti__flag.iti__lr {
    height: 11px;
    background-position: -2985px 0px;
}

.iti__flag.iti__ls {
    height: 14px;
    background-position: -3007px 0px;
}

.iti__flag.iti__lt {
    height: 12px;
    background-position: -3029px 0px;
}

.iti__flag.iti__lu {
    height: 12px;
    background-position: -3051px 0px;
}

.iti__flag.iti__lv {
    height: 10px;
    background-position: -3073px 0px;
}

.iti__flag.iti__ly {
    height: 10px;
    background-position: -3095px 0px;
}

.iti__flag.iti__ma {
    height: 14px;
    background-position: -3117px 0px;
}

.iti__flag.iti__mc {
    height: 15px;
    background-position: -3139px 0px;
}

.iti__flag.iti__md {
    height: 10px;
    background-position: -3160px 0px;
}

.iti__flag.iti__me {
    height: 10px;
    background-position: -3182px 0px;
}

.iti__flag.iti__mf {
    height: 14px;
    background-position: -3204px 0px;
}

.iti__flag.iti__mg {
    height: 14px;
    background-position: -3226px 0px;
}

.iti__flag.iti__mh {
    height: 11px;
    background-position: -3248px 0px;
}

.iti__flag.iti__mk {
    height: 10px;
    background-position: -3270px 0px;
}

.iti__flag.iti__ml {
    height: 14px;
    background-position: -3292px 0px;
}

.iti__flag.iti__mm {
    height: 14px;
    background-position: -3314px 0px;
}

.iti__flag.iti__mn {
    height: 10px;
    background-position: -3336px 0px;
}

.iti__flag.iti__mo {
    height: 14px;
    background-position: -3358px 0px;
}

.iti__flag.iti__mp {
    height: 10px;
    background-position: -3380px 0px;
}

.iti__flag.iti__mq {
    height: 14px;
    background-position: -3402px 0px;
}

.iti__flag.iti__mr {
    height: 14px;
    background-position: -3424px 0px;
}

.iti__flag.iti__ms {
    height: 10px;
    background-position: -3446px 0px;
}

.iti__flag.iti__mt {
    height: 14px;
    background-position: -3468px 0px;
}

.iti__flag.iti__mu {
    height: 14px;
    background-position: -3490px 0px;
}

.iti__flag.iti__mv {
    height: 14px;
    background-position: -3512px 0px;
}

.iti__flag.iti__mw {
    height: 14px;
    background-position: -3534px 0px;
}

.iti__flag.iti__mx {
    height: 12px;
    background-position: -3556px 0px;
}

.iti__flag.iti__my {
    height: 10px;
    background-position: -3578px 0px;
}

.iti__flag.iti__mz {
    height: 14px;
    background-position: -3600px 0px;
}

.iti__flag.iti__na {
    height: 14px;
    background-position: -3622px 0px;
}

.iti__flag.iti__nc {
    height: 10px;
    background-position: -3644px 0px;
}

.iti__flag.iti__ne {
    height: 15px;
    background-position: -3666px 0px;
}

.iti__flag.iti__nf {
    height: 10px;
    background-position: -3686px 0px;
}

.iti__flag.iti__ng {
    height: 10px;
    background-position: -3708px 0px;
}

.iti__flag.iti__ni {
    height: 12px;
    background-position: -3730px 0px;
}

.iti__flag.iti__nl {
    height: 14px;
    background-position: -3752px 0px;
}

.iti__flag.iti__no {
    height: 15px;
    background-position: -3774px 0px;
}

.iti__flag.iti__np {
    height: 15px;
    background-position: -3796px 0px;
}

.iti__flag.iti__nr {
    height: 10px;
    background-position: -3811px 0px;
}

.iti__flag.iti__nu {
    height: 10px;
    background-position: -3833px 0px;
}

.iti__flag.iti__nz {
    height: 10px;
    background-position: -3855px 0px;
}

.iti__flag.iti__om {
    height: 10px;
    background-position: -3877px 0px;
}

.iti__flag.iti__pa {
    height: 14px;
    background-position: -3899px 0px;
}

.iti__flag.iti__pe {
    height: 14px;
    background-position: -3921px 0px;
}

.iti__flag.iti__pf {
    height: 14px;
    background-position: -3943px 0px;
}

.iti__flag.iti__pg {
    height: 15px;
    background-position: -3965px 0px;
}

.iti__flag.iti__ph {
    height: 10px;
    background-position: -3987px 0px;
}

.iti__flag.iti__pk {
    height: 14px;
    background-position: -4009px 0px;
}

.iti__flag.iti__pl {
    height: 13px;
    background-position: -4031px 0px;
}

.iti__flag.iti__pm {
    height: 14px;
    background-position: -4053px 0px;
}

.iti__flag.iti__pr {
    height: 14px;
    background-position: -4097px 0px;
}

.iti__flag.iti__ps {
    height: 10px;
    background-position: -4119px 0px;
}

.iti__flag.iti__pt {
    height: 14px;
    background-position: -4141px 0px;
}

.iti__flag.iti__pw {
    height: 13px;
    background-position: -4163px 0px;
}

.iti__flag.iti__py {
    height: 11px;
    background-position: -4185px 0px;
}

.iti__flag.iti__qa {
    height: 8px;
    background-position: -4207px 0px;
}

.iti__flag.iti__re {
    height: 14px;
    background-position: -4229px 0px;
}

.iti__flag.iti__ro {
    height: 14px;
    background-position: -4251px 0px;
}

.iti__flag.iti__rs {
    height: 14px;
    background-position: -4273px 0px;
}

.iti__flag.iti__ru {
    height: 14px;
    background-position: -4295px 0px;
}

.iti__flag.iti__rw {
    height: 14px;
    background-position: -4317px 0px;
}

.iti__flag.iti__sa {
    height: 14px;
    background-position: -4339px 0px;
}

.iti__flag.iti__sb {
    height: 10px;
    background-position: -4361px 0px;
}

.iti__flag.iti__sc {
    height: 10px;
    background-position: -4383px 0px;
}

.iti__flag.iti__sd {
    height: 10px;
    background-position: -4405px 0px;
}

.iti__flag.iti__se {
    height: 13px;
    background-position: -4427px 0px;
}

.iti__flag.iti__sg {
    height: 14px;
    background-position: -4449px 0px;
}

.iti__flag.iti__sh {
    height: 10px;
    background-position: -4471px 0px;
}

.iti__flag.iti__si {
    height: 10px;
    background-position: -4493px 0px;
}

.iti__flag.iti__sj {
    height: 15px;
    background-position: -4515px 0px;
}

.iti__flag.iti__sk {
    height: 14px;
    background-position: -4537px 0px;
}

.iti__flag.iti__sl {
    height: 14px;
    background-position: -4559px 0px;
}

.iti__flag.iti__sm {
    height: 15px;
    background-position: -4581px 0px;
}

.iti__flag.iti__sn {
    height: 14px;
    background-position: -4603px 0px;
}

.iti__flag.iti__so {
    height: 14px;
    background-position: -4625px 0px;
}

.iti__flag.iti__sr {
    height: 14px;
    background-position: -4647px 0px;
}

.iti__flag.iti__ss {
    height: 10px;
    background-position: -4669px 0px;
}

.iti__flag.iti__st {
    height: 10px;
    background-position: -4691px 0px;
}

.iti__flag.iti__sv {
    height: 12px;
    background-position: -4713px 0px;
}

.iti__flag.iti__sx {
    height: 14px;
    background-position: -4735px 0px;
}

.iti__flag.iti__sy {
    height: 14px;
    background-position: -4757px 0px;
}

.iti__flag.iti__sz {
    height: 14px;
    background-position: -4779px 0px;
}

.iti__flag.iti__tc {
    height: 10px;
    background-position: -4823px 0px;
}

.iti__flag.iti__td {
    height: 14px;
    background-position: -4845px 0px;
}

.iti__flag.iti__tg {
    height: 13px;
    background-position: -4889px 0px;
}

.iti__flag.iti__th {
    height: 14px;
    background-position: -4911px 0px;
}

.iti__flag.iti__tj {
    height: 10px;
    background-position: -4933px 0px;
}

.iti__flag.iti__tk {
    height: 10px;
    background-position: -4955px 0px;
}

.iti__flag.iti__tl {
    height: 10px;
    background-position: -4977px 0px;
}

.iti__flag.iti__tm {
    height: 14px;
    background-position: -4999px 0px;
}

.iti__flag.iti__tn {
    height: 14px;
    background-position: -5021px 0px;
}

.iti__flag.iti__to {
    height: 10px;
    background-position: -5043px 0px;
}

.iti__flag.iti__tr {
    height: 14px;
    background-position: -5065px 0px;
}

.iti__flag.iti__tt {
    height: 12px;
    background-position: -5087px 0px;
}

.iti__flag.iti__tv {
    height: 10px;
    background-position: -5109px 0px;
}

.iti__flag.iti__tw {
    height: 14px;
    background-position: -5131px 0px;
}

.iti__flag.iti__tz {
    height: 14px;
    background-position: -5153px 0px;
}

.iti__flag.iti__ua {
    height: 14px;
    background-position: -5175px 0px;
}

.iti__flag.iti__ug {
    height: 14px;
    background-position: -5197px 0px;
}

.iti__flag.iti__us {
    height: 11px;
    background-position: -5263px 0px;
}

.iti__flag.iti__uy {
    height: 14px;
    background-position: -5285px 0px;
}

.iti__flag.iti__uz {
    height: 10px;
    background-position: -5307px 0px;
}

.iti__flag.iti__va {
    height: 15px;
    background-position: -5329px 0px;
}

.iti__flag.iti__vc {
    height: 14px;
    background-position: -5346px 0px;
}

.iti__flag.iti__ve {
    height: 14px;
    background-position: -5368px 0px;
}

.iti__flag.iti__vg {
    height: 10px;
    background-position: -5390px 0px;
}

.iti__flag.iti__vi {
    height: 14px;
    background-position: -5412px 0px;
}

.iti__flag.iti__vn {
    height: 14px;
    background-position: -5434px 0px;
}

.iti__flag.iti__vu {
    height: 12px;
    background-position: -5456px 0px;
}

.iti__flag.iti__wf {
    height: 14px;
    background-position: -5478px 0px;
}

.iti__flag.iti__ws {
    height: 10px;
    background-position: -5500px 0px;
}

.iti__flag.iti__xk {
    height: 15px;
    background-position: -5522px 0px;
}

.iti__flag.iti__ye {
    height: 14px;
    background-position: -5544px 0px;
}

.iti__flag.iti__yt {
    height: 14px;
    background-position: -5566px 0px;
}

.iti__flag.iti__za {
    height: 14px;
    background-position: -5588px 0px;
}

.iti__flag.iti__zm {
    height: 14px;
    background-position: -5610px 0px;
}

.iti__flag.iti__zw {
    height: 10px;
    background-position: -5632px 0px;
}

.iti__flag {
    height: 15px;
    box-shadow: 0px 0px 1px 0px #888;
    background-image: url("../assets/flags.png");
    background-repeat: no-repeat;
    background-color: #DBDBDB;
    background-position: 20px 0;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("../assets/flags@2x.png");
    }
}

.iti__flag.iti__np {
    background-color: transparent;
}