body, html {
    overflow: hidden;
}

* {
    -webkit-tap-highlight-color: transparent;
}

span[data-text] {
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #161616;
    font-family: sans-serif;
}

.preloader {
    display: none;
}

.app-frame {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #F3F7FC;
}

.one-line-text {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

* {
    font-family: sans-serif;
    user-select: none;
    -webkit-user-select: none;
}

div {
    box-sizing: border-box;
}

a {
    text-decoration: none!important;
    color: inherit!important;
}

a:focus {
    text-decoration: none!important;
    color: inherit!important;
}
a:hover {
    text-decoration: none!important;
    color: inherit!important;
}

input,
input:focus,
select:focus,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
    outline: none;
    user-select: initial!important;
    -webkit-user-select: initial!important;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

input:disabled {
    color: #012849;
}

::placeholder {
    color: #898989;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #898989;
    opacity: 1;
}

::-ms-input-placeholder {
    color: #898989;
    opacity: 1;
}

.hidden {
    display: none!important;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

/* SPLASH */

.splash-screen {
    background-color: #3172C5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes pulse {
    from { opacity: 0.5; }
    50% { opacity: 1; }
    to { opacity: 0.5; }
}
.splash-screen img {
    max-width: calc(100% - 30px);
    /*animation: pulse 1.6s linear infinite;*/
}

/* ONBOARDING */

.onboarding-screen {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.onboarding-screen .logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    flex-shrink: 0;
}


.onboarding-screen .steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    flex-shrink: 0;
}

.onboarding-screen .steps-row .line {
    width: 20px;
    height: 2px;
    margin: 0 2px;
    background-color: #D9D9D9;
}

.onboarding-screen .steps-row .step {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 95%;
}

.onboarding-screen .steps-row .step.done {
    background-color: #239E63;
    color: #fff;
}

.onboarding-screen .steps-row .step.active {
    background-color: #3A7BCE;
    color: #fff;
}

.onboarding-screen .title-row {
    flex-shrink: 0;
    text-align: center;
    margin-top: 20px;
}

.onboarding-screen .content-row {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onboarding-screen .content-row .notification {
    display: flex;
    align-items: center;
    justify-content: center;
}
.onboarding-screen .content-row .notification img {
    width: 320px;
    max-width: calc(100% - 30px);
}

.onboarding-screen .content-row .success {
}
.onboarding-screen .content-row .success .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.onboarding-screen .content-row .success .title {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onboarding-screen .button-row {
    flex-shrink: 0;
}

.onboarding-screen .secondary-button-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 9px;
}

/* COMMON BUTTON */

.common-button {
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 7px;
    /* text-overflow: ellipsis; */
    /* overflow: hidden; */
}

.common-button.blue {
    background: rgb(57,122,205);
    background: linear-gradient(180deg, rgba(57,122,205,1) 0%, rgba(33,98,180,1) 100%);
    color: #fff;
}

.common-button.delete {
    background: transparent;
    color: #FC1446;
    border: 1px solid #FC1446;
}

.common-button.add {
    background: transparent;
    color: #2263B6;
    border: 1px solid #2263B6;
}

.common-button.cancel {
    background: transparent;
    color: #161616;
    border: 1px solid #161616;
}

.common-button.delete-full {
    color: #fff;
    background: rgb(252,20,70);
    background: linear-gradient(180deg, rgba(252,20,70,1) 0%, rgb(210, 16, 60) 100%);
    border: 1px solid #FC1446;
}

.common-button .left-icon {
    margin-right: 5px;
}

.common-button.green {
    background: rgb(43, 170, 109);
    background: linear-gradient(180deg, rgba(43, 170, 109, 1) 0%, rgba(29, 149, 91, 1) 100%);
    color: #fff;
}

.common-button .badge {
    font-size: 70%;
    padding: 2px 6px;
    background-color: #fff;
    border-radius: 50px;
    margin-left: 5px;
    color: #28A86A;
}

.common-button .arrow {
    margin-left: 5px;
}

.text-button {
    padding: 5px;
}

.text-button .arrow {
    margin-left: 5px;
}

.back-button {
    display: flex;
    align-items: center;
    font-size: 90%;
    padding: 4px 0;
}

.back-button .arrow {
    margin-right: 5px;
}

/* DOUBLE BUTTON */

.double-button {
    display: flex;
    align-items: center;
    width: 100%;
}
.double-button .left-button {
    width: calc(50% - 7.5px);
    margin-right: 7.5px;
    flex-shrink: 0;
}
.double-button .right-button {
    /* width: 50%; */
    width: calc(50% - 7.5px);
    margin-left: 7.5px;
    flex-shrink: 0;
}

/* RADIO GROUP */

.radio-group {
    background-color: #fff;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05););
}

.radio-group .radio-group-row {
    padding: 9px 9px;
    border-bottom: 2px solid #ECF1F7;
    display: flex;
    align-items: center;
}

.radio-group .radio-group-row:last-child {
    border-bottom: none;
}

.radio-group .radio-group-row .circle {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: #F3F7FC;
    display: flex;
    align-items: center;
    justify-content: center;
}
.radio-group .radio-group-row.active  .circle .dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #3879CC;
}

.radio-group .radio-group-row .radio-group-row-content {
    width: 100%;
    padding-right: 8px;
    padding-left: 8px;
}

.radio-group .radio-group-row .radio-group-row-content .currency-and-rate {
    display: flex;
    align-items: center;
    width: 100%;
}

.radio-group .radio-group-row .radio-group-row-content .currency-and-rate .currency {
    width: 50%;
    display: flex;
    align-items: center;
}

.radio-group .radio-group-row .radio-group-row-content .currency-and-rate .currency img {
    width: 20px;
    margin-right: 6px;
}

.radio-group .radio-group-row .radio-group-row-content .currency-and-rate .rate {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
    font-size: 70%;
}

.radio-group .radio-group-row .radio-group-row-content .flag-and-lang {
    display: flex;
    align-items: center;
}

.radio-group .radio-group-row .radio-group-row-content .flag-and-lang img {
    width: 20px;
    margin-right: 6px;
    opacity: 0;
    transition: 0.2s;
}
.radio-group .radio-group-row .radio-group-row-content .flag-and-lang img.shown {
    opacity: 1;
}

.radio-group .radio-group-row .radio-group-row-content .vignette-and-price {
    display: flex;
    align-items: center;
}

.radio-group .radio-group-row .radio-group-row-content .vignette-and-price .name {
    display: flex;
    align-items: center;
    font-size: 90%;
    width: 100%;
}

.radio-group .radio-group-row .radio-group-row-content .vignette-and-price .price {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 90%;
    font-weight: bold;
    flex-shrink: 0;
}

/* HOME SCREEN */

.home-screen {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-screen .logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    flex-shrink: 0;
    padding: 15px;
}

.home-screen .content-row {
    height: 100%;
    padding: 15px;
    overflow-y: auto;
}

.home-screen .menu-row {
    flex-shrink: 0;
}

.home-screen .vignette-type-selector {
    background: rgb(58,123,206);
    background: linear-gradient(180deg, rgba(58,123,206,1) 0%, rgba(28,93,176,1) 100%);
    display: flex;
    align-items: flex-end;
    border-radius: 8px;
    padding: 10px 0;
    margin-bottom: 25px;
    /* justify-content: center; */
}

.home-screen .vignette-type-selector .vignette-type {
    width: 100%;
    border-right: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home-screen .vignette-type-selector .vignette-type .triangle {
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.home-screen .vignette-type-selector .vignette-type:last-child {
    border-right: none;
}

.home-screen .vignette-type-selector .icon-and-text {
    color: #fff;
    opacity: 0.65;
}

.home-screen .vignette-type-selector .icon-and-text .icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-screen .vignette-type-selector .icon-and-text .icon {

}

.home-screen .vignette-type-selector .icon-and-text .text {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.home-screen .vignette-type-selector .vignette-type.active .icon-and-text {
    opacity: 1;
}

.home-screen .vignette-type-selector .vignette-type.active .triangle {
    display: block;
}

.home-screen .content-row .note {
    text-align: center;
    margin-top: 20px;
    color: #6F6F6F;
    font-size: 80%;
}

/* MAIN MENU */

.main-menu {
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 -2px 7px rgba(0, 0, 0, 0.05);
    height: 55px;
    flex-shrink: 0;
}

.main-menu .main-menu-item {
    width: 33.33%;
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    justify-content: center;
    font-size: 90%;
}

.main-menu .main-menu-item .text {
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-menu .main-menu-item .nr {
    position: absolute;
    left: 50%;
    top: -9px;
    font-size: 76%;
    /*transform: translateX(-50%); */
    width: 18px;
    height: 18px;
    background-color: #808080;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transition: 0.25s;
    transform: translateX(-50%) scale(0);
}

.main-menu .main-menu-item .nr.shown {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.main-menu .main-menu-item .icon {
    top: 0;
    margin-right: 3px;
    display: flex;
    align-items: center;
}


.main-menu .main-menu-item .icon .inactive-icon {

}
.main-menu .main-menu-item .icon .active-icon {
    display: none;
}

.main-menu .main-menu-item.active {
    color: #3677CA;
}

.main-menu .main-menu-item.active .inactive-icon {
    display: none;
}
.main-menu .main-menu-item.active .active-icon {
    display: block;
}
.main-menu .main-menu-item.active .nr {
    background-color: #3677CA;
}

/* V-SPACE */

.v-space {
    height: 15px;
}

/* EDIT VIGNETTE SCREEN */

.edit-vignette-screen {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.edit-vignette-screen > .header {
    flex-shrink: 0;
    color: #fff;
    background-color: #3172C5;
    padding: 15px;
}

.edit-vignette-screen .header .back-row {
    margin-bottom: 7px;
}

.edit-vignette-screen .header .vignette-name {
    display: flex;
    align-items: center;
}

.edit-vignette-screen .header .vignette-name .icon {
    margin-right: 5px;
}

.edit-vignette-screen .content-row {
    padding: 15px;
    height: 100%;
    overflow-y: auto;
}

.edit-vignette-screen .content-row .description {
    font-size: 90%;
    margin-bottom: 15px;
}

.edit-vignette-screen .content-row .validity {
    font-size: 80%;
    text-align: center;
}

.edit-vignette-screen .menu-row {
    flex-shrink: 0;
}

/* INPUT */

.input-row {
    margin-bottom: 15px;
}


.input-row .label {
    margin-bottom: 9px;
    font-weight: bold;
    font-size: 95%;
}

.input-row .input-box {
    position: relative;
}

.input-row .input-box.left-icon {

}

.input-row input[type="text"],
.input-row input[type="email"] {
    border: 1px solid #fff;
    display: block;
    box-sizing: border-box;
    width: 100%;
    border-radius: 7px;
    box-shadow: 1px 2px 11px rgba(0, 0, 0, 0.05);
    padding: 10px;
}

.input-row .input-box.focus input[type="text"],
.input-row .input-box.focus input[type="email"] {
    border-color: #3172C5;
}

.input-row .input-box.left-icon input[type="text"],
.input-row .input-box.left-icon input[type="email"]{
    padding-left: 34px;
}

.input-row .input-box.left-icon .icon {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.input-row .input-box.dropdown-icon .icon {
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* SCROLLABLE */

.scrollable {
    overflow-y: auto;
    height: 100%;
    /* display: flex; */
    /* flex-direction: column; */
}

/* BOTTOM BTN SECTION */

.bottom-btn-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /* flex-shrink: 0; */
}

.bottom-btn-section > .bottom-btn-section-content {
    height: 100%;
    /* flex-shrink: 0; */
    overflow-y: scroll;
}

.bottom-btn-section > .bottom-btn-section-content.scrollable {
    overflow-y: auto;
}

.bottom-btn-section > .button-content {
    flex-shrink: 0;
    background-color: #F3F7FC;
    padding-top: 15px;
}

.bottom-btn-section > .button-content.with-padding {
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* COMMON HEADER */

.common-header {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 15px;
    flex-shrink: 0;
}

.common-header .left-column {
    width: 33.33%;
    flex-shrink: 0;
}

.common-header .middle-column {
    width: 33.33%;
    text-align: center;
    color: #3273C6;
    font-weight: bold;
    flex-shrink: 0;
}

.common-header .right-column {
    width: 33.33%;
    flex-shrink: 0;
}

/* CART SCREEN */

.cart-screen {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cart-screen .cart-content {
    height: calc(100% - 115px);
}

.cart-screen .cart-content .cart-item {
    margin-bottom: 15px;
    box-shadow: 0 2px 11px rgba(0, 0, 0, 0.05);
}

.cart-screen .cart-content .cart-item .fake-text-0 {
    width: 150px;
    height: 5px;
    border-radius: 15px;
    background-color: #fff;
}

.cart-screen .cart-content .cart-item .fake-text-1 {
    width: 75px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.cart-screen .cart-content .cart-item .fake-text-2 {
    width: 45px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.cart-screen .cart-content .cart-item .fake-text-3 {
    width: 60px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.cart-screen .cart-content .cart-item .fake-text-4 {
    width: 110px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.cart-screen .cart-content .cart-item .fake-text-5 {
    width: 133px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.cart-screen .cart-content .cart-item .fake-text-6 {
    width: 74px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.cart-screen .cart-content .cart-item .cart-item-header {
    background-color: #3172C5;
    color: #fff;
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 15px;
}

.cart-screen .cart-content .cart-item .cart-item-header .title {
    width: 100%;
    font-size: 90%;
    display: flex;
    padding-right: 5px;
    align-items: center;
}
.cart-screen .cart-content .cart-item .cart-item-header .title img {
    margin-right: 5px;
}

.cart-screen .cart-content .cart-item .cart-item-header .edit-icon {
    flex-shrink: 0;

}

.cart-screen .cart-content .cart-item-content {
    background-color: #fff;
    padding: 15px;
}

/* COMMON DETAILS */

.common-details {

}

.common-details .detail-row {
    display: flex;
    align-items: flex-start;
    font-size: 90%;
    margin-bottom: 5px;
}
.common-details .detail-row .key {
    width: 30%;
    /* text-overflow: ellipsis; */
    /* overflow: hidden; */
    word-wrap: break-word;
    padding-right: 3px;
}
.common-details .detail-row .value {
    width: 70%;
    word-wrap: break-word;
}
.common-details .detail-row:last-child {
    margin-bottom: 0;
}

/* CUSTOMER DATA SCREEN */

.customer-data-screen {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.customer-data-screen > .content {
    height: calc(100% - 115px);
    padding: 15px;
    /* overflow-y: scroll; */
    padding-top: 0;
}

/* CART SUMMARY SCREEN */

.cart-summary-screen {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cart-summary-screen > .content {
    height: calc(100% - 115px);
    overflow-y: scroll;
}

/* COMMON SECTION */

.common-section {
    display: flex;
    align-items: center;
    background-color: #fff;
    height: 40px;
    width: 100%;
    padding: 0 15px;
    overflow: hidden;
}

.common-section .name {
    width: 100%;
    /* flex-shrink: 0; */
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 90%;
}

.common-section .name .nr {
    margin-left: 5px;
    background-color: #ECF0F5;
    border-radius: 20px;
    padding: 2px 6px;
    font-size: 70%;
}

.common-section .edit {
    /* width: 50px; */
    white-space: nowrap;
    font-size: 84%;
    color: #3273C6;
}
.common-section .edit img {
    margin-right: 4px;
}

/* BORDER SEPARATED */

.border-separated-sections {

}

.border-separated-sections .border-separated-item {
    border-bottom: 1px solid #DCDCDC;
    padding: 15px;
}

.border-separated-sections .border-separated-item:last-child {
    border-bottom: none;
}


/* TOTAL ROW */

.total-row {
    text-align: right;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 15px;
    padding-right: 15px;
}

.total-row .blue {
    color: #3273C6;
}

/* CHECKBOX */

.checkbox-input-box {
    display: flex;
    align-items: center;
}

.checkbox-input-box .checkbox {
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 9px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.07);
}

.checkbox-input-box .text {
    width: 100%;
    font-size: 77%;
}

.checkbox-input-box .checkbox .blue {
    background-color: #3172C5;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    display: none;
}

.checkbox-input-box .checkbox.active .blue {
    display: flex;
}

.checkbox-input-box .checkbox .blue img {
    width: 10px;
}

/* VIGNETTES */

.vignettes-screen {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}


.vignettes-screen > .content {
    height: calc(100% - 115px);
    /* padding: 15px; */
    overflow-y: auto;
    padding-top: 0;
}

.vignettes-screen > .content .empty-state {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.vignettes-screen > .content .empty-state .middle {
    width: 100%;
}

.vignettes-screen > .content .empty-state .icon-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.vignettes-screen > .content .empty-state .text-row {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120%;
    margin-bottom: 15px;
}

.vignettes-screen > .content .empty-state .button-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vignettes-screen > .content > .button-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.vignettes-screen .non-empty-state {

}

.vignettes-screen .non-empty-state .fake-text-0 {
    width: 75px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.vignettes-screen .non-empty-state .fake-text-1 {
    width: 63px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.vignettes-screen .non-empty-state .fake-text-2 {
    width: 42px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.vignettes-screen .non-empty-state .fake-text-3 {
    width: 83px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.vignettes-screen .non-empty-state .fake-text-4 {
    width: 90px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.vignettes-screen .non-empty-state .fake-text-5 {
    width: 122px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.vignettes-screen .non-empty-state .fake-text-6 {
    width: 75px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.vignettes-screen .non-empty-state .fake-text-7 {
    width: 40px;
    height: 3px;
    border-radius: 15px;
    background-color: #00C32D;
    margin-bottom: 5px;
}


.vignettes-screen .non-empty-state .button-row {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.vignettes-screen .sync-btn {
    border: 1px solid #2263B6;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 10px;
    color: #2263B6;
    font-size: 90%;
}

.vignettes-screen .sync-btn img {
    margin-right: 5px;
}

.vignettes-screen .vignette {
    background-color: #fff;
    margin-bottom: 15px;
    width: 100%;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.05);
}

.vignettes-screen .vignette > .details {
    width: 100%;
}

.vignettes-screen .vignette > .arrow {
    display: flex;
    height: 100%;
    justify-content: center;
}

/* STATUSES */

.status-success {
    color: #00C32D;
    display: inline-flex;
    align-items: center;
}

.status-success img {
    margin-left: 4px;
}

.status-failure {
    color: #FF0004;
    display: inline-flex;
    align-items: center;
}

.status-failure img {
    margin-left: 4px;
    width: 13px;
}

.status-in-progress {
    color: #D7AC00;
    display: inline-flex;
    align-items: center;
}

.status-in-progress img {
    margin-left: 4px;
    width: 15px;
    animation: rotate 4.5s linear infinite;
}

@keyframes rotate {
    0% {transform: rotate(-360deg);}
    100% {transform: rotate(360deg);}
}

/* ORDER SCREEN */

.order-screen {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}


.order-screen .fake-text-0 {
    width: 75px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.order-screen  .fake-text-1 {
    width: 63px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.order-screen  .fake-text-2 {
    width: 42px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.order-screen  .fake-text-3 {
    width: 83px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.order-screen  .fake-text-4 {
    width: 90px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.order-screen .fake-text-5 {
    width: 122px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.order-screen .fake-text-6 {
    width: 75px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.order-screen .fake-text-7 {
    width: 40px;
    height: 3px;
    border-radius: 15px;
    background-color: #00C32D;
    margin-bottom: 5px;
}

.order-screen .fake-text-8 {
    width: 40px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.order-screen .fake-text-9 {
    width: 75px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.order-screen  .fake-text-10 {
    width: 63px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.order-screen  .fake-text-11 {
    width: 42px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.order-screen  .fake-text-12 {
    width: 83px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.order-screen  .fake-text-13 {
    width: 90px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.order-screen  .fake-text-14 {
    width: 40px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
    display: inline-block;
}

.order-screen  .fake-text-15 {
    width: 45px;
    height: 5px;
    border-radius: 15px;
    background-color: #3273C6;
    margin-bottom: 5px;
    display: inline-block;
}

.order-screen  .fake-text-16 {
    width: 45px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.order-screen  .fake-text-17 {
    width: 69px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.order-screen  .fake-text-18 {
    width: 120px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.order-screen  .fake-text-19 {
    width: 95px;
    height: 3px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.order-screen > .content {
    height: calc(100% - 115px);
    /* padding: 15px; */
    overflow-y: auto;
    padding-top: 0;
}

.order-screen > .content .repay-row {
    padding: 15px;
    padding-top: 0;
    display: none;
}

.order-screen > .content .info-row {
    display: none;
    padding: 15px;
    padding-top: 0;
}

.order-screen > .content .info-row .info-box {

background-color: #ff00041f;

padding: 15px;

font-size: 86%;

border: 1px solid #ff0004;

border-radius: 6px;

color: #FF0004;
}

/* INFO MENU ROW */

.info-menu-row {
    display: flex;
    align-items: center;
}

.info-menu-row .caption {
    width: 100%;
    font-size: 90%;
    display: flex;
    align-items: center;
}

.info-menu-row .caption .doc-type {
    background-color: #ffffff;
    font-size: 70%;
    margin-left: 5px;
    border-radius: 15px;
    padding: 3px 6px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    /*color: #3677CA;*/
}

.info-menu-row .caption .icon {
    margin-right: 4px;
    width: 12px;
}

.info-menu-row .arrow {
    display: flex;
    align-items: center;
}

.info-menu-row .arrow img {
    width: 8px;
}

.info-menu-settings-row {
    display: flex;
    align-items: center;
    font-size: 90%;
}

.info-menu-settings-row > .left {
    width: 50%;
}

.info-menu-settings-row > .right {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.info-menu-settings-row > .right .icon {
    margin-right: 4px;
    width: 10px;
}

.info-menu-settings-row > .right .blue {
    color: #3273C6;
}

/* INFO SCREEN */

.info-screen {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-screen > .content {
    height: calc(100% - 115px);
    /* padding: 15px; */
    overflow-y: auto;
    padding-top: 0;
}

.info-screen .nmfr {
    text-align: center;
    padding: 0 15px;
    padding-top: 25px;
    font-weight: bold;
    font-size: 90%;
    border-top: 1px solid #DCDCDC;
}

.info-screen .nmfr img {
    max-width: 80%;
}

/* FAQ SCREEN */

.faq-screen {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.faq-screen > .content {
    height: calc(100% - 115px);
    /* padding: 15px; */
    overflow-y: auto;
    padding-top: 0;
}

.faq-screen .faq-section {
    margin-bottom: 15px;
}

.faq-screen .faq-section .question {
    color: #fff;
    display: flex;
    align-items: center;
    background-color: #3172C5;
    /* height: 40px; */
    padding: 15px;
}

.faq-screen .faq-section .question .title {
    width: 100%;
    font-size: 90%;
    display: flex;
    align-items: center;
}

.faq-screen .faq-section .question .title .fake-text-0 {
    width: 65px;
    height: 4px;
    border-radius: 15px;
    background-color: #fff;
    display: block;
}

.faq-screen .faq-section .question .title .fake-text-1 {
    width: 130px;
    height: 4px;
    border-radius: 15px;
    background-color: #fff;
    display: block;
}

.faq-screen .faq-section .question .title .fake-text-2 {
    width: 40px;
    height: 4px;
    border-radius: 15px;
    background-color: #fff;
    display: block;
}

.faq-screen .faq-section .question .title .fake-text-3 {
    width: 100px;
    height: 4px;
    border-radius: 15px;
    background-color: #fff;
    display: block;
}

.faq-screen .faq-section .question .title .arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.faq-screen .faq-section .answer {
    padding: 15px;
    /* padding-bottom: 0; */
    display: none;
    background-color: #fff;
}

.faq-screen .faq-section.open .answer {
    display: block;
    font-size: 90%;
}

.faq-screen .faq-section.open .arrow img {
    transform: rotate(-180deg);
}

/* NEWS SCREEN */

.news-screen {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-screen > .content {
    height: calc(100% - 115px);
    /* padding: 15px; */
    overflow-y: auto;
    padding-top: 0;
}

.news-screen .date-row {
    text-align: center;
    margin-bottom: 6px;
    font-size: 80%;
    display: flex;
    justify-content: center;
}

.news-screen .fake-text-0 {
    height: 4px;
    width: 40px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.news-screen .fake-text-1 {
    height: 6px;
    width: 150px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.news-screen .fake-text-2 {
    height: 4px;
    width: 180px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 8px;
}

.news-screen .fake-text-3 {
    height: 4px;
    width: 250px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 8px;
}

.news-screen .fake-text-4 {
    height: 4px;
    width: 210px;
    border-radius: 15px;
    background-color: #161616;
    margin-bottom: 5px;
}

.news-screen .news-item {
    background-color: #fff;
    margin-bottom: 15px;
    width: 100%;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.05);
}

.news-screen .news-item > .text {
    width: 100%;
    font-size: 90%;
    padding-right: 5px;
}

.news-screen .news-item > .arrow {
    display: flex;
    height: 100%;
    justify-content: center;
}

.news-screen .news-item > .text .title {
    font-weight: bold;
    margin-bottom: 8px;
}

/* MODAL */

.modal {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
}

.modal.shown {
    visibility: visible;
}

.modal .modal-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 0.3s;
}

.modal.shown .modal-bg {
    opacity: 1;
}

.modal .modal-panel {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 3;
    background-color: #EDF1F6;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    transition: 0.3s;
    transform: translateY(100%);
}

.modal.shown .modal-panel {
    transform: translateY(0);
}

.modal .modal-title {
    padding: 15px 15px;
    text-align: center;
    font-size: 110%;
    padding-top: 20px;
}

.modal .modal-title.error {
    color: #FC1446;
}

.modal .modal-graphics {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -15px;
}
.modal .modal-bar {
    position: absolute;
    width: 100px;
    height: 5px;
    background-color: #EDF1F6;
    border-radius: 20px;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.modal .modal-select {
    max-height: 198px;
    overflow-y: auto;
}

.modal .modal-select .modal-select-item {
    border-bottom: 2px solid #DFE4EA;
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 40px;
}

.modal .modal-select .modal-select-item .flag {
    width: 20px;
    margin-right: 6px;
}

.modal .modal-select .modal-select-item .checkmark {
    margin-left: 5px;
    display: none;
}
.modal .modal-select .modal-select-item.selected .checkmark {
    display: block;
}

.modal .modal-select .modal-select-item:last-child {
    border-bottom: none;
}

.modal .modal-content {

}

.modal .modal-content .errors {
    word-wrap: break-word;
    padding: 0 15px;
    color: #FC1446;
}

.modal .modal-content .errors-button-row {
    padding: 0 15px;
    padding-bottom: 15px;
}

.modal .modal-content .errors ul {
    padding-left: 15px;
    margin-top: 0;
}

.modal .modal-content .errors .single-error {
    padding-bottom: 15px;
}

.modal .modal-content.with-padding {
    padding: 15px;
    padding-top: 0;
}

.modal .modal-content .description {
    font-size: 80%;
    margin-bottom: 15px;
}

.modal .modal-content .description.text-center {
    text-align: center;
}

.modal .modal-content .validity-result {

}


.modal .modal-content .validity-result .no-result .title {
    text-align: center;
    margin-bottom: 15px;
    color: #FF0004;
}

.modal .modal-content .validity-result .has-result .title {
    text-align: center;
    margin-bottom: 15px;
    color: #00C22D;
}

.modal .modal-content .validity-result .has-result .border-separated-sections {
    max-height: 210px;
    overflow-y: auto;
    margin-bottom: 15px;
}

    /* LOADER */

.full-screen-loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 150;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    display: none;
}

.full-screen-loader.active {
    display: flex;
}

.loader-icon {
    width: 45px;
    height: 45px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: loader-rotation 1s linear infinite;
}

@keyframes loader-rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.35;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.35;
    }
}

.pulsate {
    -webkit-animation: pulse 1.5s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0.35;
    pointer-events: none;
}

/* CALENDAR */

.modal .calendar {/* background-color: #fff; *//* border: 1px solid #dfdede; *//* padding: 12px; */z-index: 5;border-radius: 11px;top: calc(100% + 4px);cursor: default;/* transition: 0.3s; *//* opacity: 0; */}

.modal .calendar .header {display: flex;align-items: center;margin-bottom: 6px;justify-content: center;/* width: 80%; */border-bottom: 1px solid #ddd;padding-bottom: 13px;}
.modal .calendar .header .prev {width: 30px;cursor: pointer;text-align: center;font-size: 151%;display: flex;align-items: center;padding-left: 6px;height: 18px;}

.modal .calendar .header .prev img {position: relative;top: 2px;left: 2px;}
.modal .calendar .header .next {width: 30px;cursor: pointer;text-align: center;font-size: 151%;display: flex;align-items: center;justify-content: flex-end;padding-right: 6px;height: 18px;}

.modal .calendar .header .next img {position: relative;top: 2px;}

.modal .calendar .header .month {width: calc(100% - 60px);text-align: center;font-weight: 600;font-size: 92%;}

.modal .calendar table {border-collapse: collapse;width: 100%;}

.modal .calendar table tr {

}

.modal .calendar table th {padding: 7px;font-weight: 400;/* border-bottom: 1px solid #ddd; */text-align: center;/* border-top: 1px solid #ddd; */font-size: 79%;max-width: 20px;overflow: hidden;text-overflow: ellipsis;}

.modal .calendar table td {/* display: flex; */text-align: center;padding: 3px;}

.modal .calendar table .day {
    position: relative;
    display: inline-block;width: 36px;height: 36px;
    display: inline-flex;justify-content: center;align-items: center;/* background-color: #d9d9d9; */
    border-radius: 8px;
    cursor: pointer;
}
.modal .calendar table .day {
    border: 1px solid #ddd;
    /* background-color: #fff; */
}
.modal .calendar table .day.non-selectable {
    cursor: not-allowed;
    pointer-events: none;
    /* opacity: 0.35; */
    /* background-color: #ddd; */
    background-image: url('/img/calendar-x.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.modal .calendar td.other-month .day {color: #9a9a9a;}

.modal .calendar table td.today .day {
    background-color: #f1f1f1;
    font-weight: 600;
}
.modal .calendar table td.today .day {
    color: #000;
}

.modal .calendar table td.selected .day {
    background-color: #3172C5;
    color: #fff;
    font-weight: 400;
    border-color: #3172C5;
}