/* CONTAINER */

.nobc-main-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.nobc-container {
    width: 95%;
    max-width: 1320px;
    margin: auto;
}

/* HEADER */

.nobc-header {
    width: 100%;
    background-color: var(--white);
}

.nobc-header .nobc-container {
    height: 64px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nobc-header .nobc-logo-container {
    position: relative;
    padding-top: 10px;
    min-width: fit-content;
}

.nobc-header .nobc-logo-container img {
    height: 36px;
    position: relative;
    z-index: 2;
}

.nobc-header .nobc-logo-container .nobc-chevron {
    position: absolute;
    z-index: 1;
    bottom: -20px;
    left: 2px;
    width: 22.63px;
    height: 22.63px;
    transform: rotate(45deg);
    background-color: var(--white);
}

/* FOOTER */

.nobc-footer {
    width: 100%;
    display: flex;
    background-color: var(--primary-500);
}

.nobc-footer * {
    color: var(--white) !important;
}

.nobc-footer ul.nobc-arrow-list li {
    opacity: 0.9;
}

.nobc-footer ul.nobc-arrow-list li:has(a:hover) {
    opacity: 1;
}

.nobc-footer ul.nobc-arrow-list li::before {
    background-color: var(--white);
}

/* BULLET LIST */

ul.nobc-bullet-list {
    list-style: disc;
}

ul.nobc-bullet-list li {
    margin-left: 30px;
}

/* ARROW LIST */

ul.nobc-arrow-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

ul.nobc-arrow-list li {
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: ease-in-out .15s;
}

ul.nobc-arrow-list li::before {
    width: 24px;
    height: 24px;
    content: '';
    /* On utilise un mask pour pouvoir changer la couleur de l'icône, ce qui n'est pas possible en mettant le svg dans le "content" */
    mask: url("../icons/sy-arrow-arrow-right.svg") no-repeat;
    -webkit-mask: url("../icons/sy-arrow-arrow-right.svg") no-repeat;
    mask-size: cover;
    -webkit-mask-size: cover;
    background-color: var(--primary-300);
}

ul.nobc-arrow-list li a {
    flex: 1;
}

ul.nobc-arrow-list li:has(a:hover) {
    gap: 0;
    padding-left: 5px;
}

/* Overriding Bootstrap */
ul.nobc-arrow-list a:hover {
    color: var(--primary-300);
}

/* BUTTON */

.nobc-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: fit-content;
    padding: 8px 16px;
    background-color: var(--primary-300);
    color: var(--white);
    border-radius: 2px;
    border: none;
    cursor: pointer;
}

.nobc-button-fake {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: fit-content;
    padding: 8px 16px;
    background-color: var(--primary-300);
    color: var(--white);
    border-radius: 2px;
    border: none;
}

.nobc-button.nobc-button-full {
    width: 100%;
}

.nobc-button.nobc-button-square {
    padding: 8px;
}

.nobc-button:hover {
    background-color: var(--primary-200);
    color: var(--white);
}

.nobc-button:active, .nobc-button.active {
    background-color: var(--primary-400);
}

.nobc-button[disabled] {
    color: var(--neutral-300) !important;
    background-color: transparent !important;
    border: none !important;
    pointer-events: none;
}

.nobc-button.nobc-button-secondary {
    background-color: var(--primary-50);
    color: var(--primary-300);
    border: 1px solid var(--primary-75-muted);
}

.nobc-button.nobc-button-secondary:hover {
    border: 1px solid var(--primary-200);
}

.nobc-button.nobc-button-secondary:active, .nobc-button.nobc-button-secondary.active {
    background-color: var(--primary-55-muted);
}

.nobc-button.nobc-button-accent {
    background-color: var(--accent-300);
    color: var(--neutral-670);
}

.nobc-button.nobc-button-accent:hover {
    background-color: var(--accent-200);
}

.nobc-button.nobc-button-accent:active, .nobc-button.nobc-button-accent.active {
    background-color: var(--accent-400);
}

.nobc-button.nobc-button-ghost,
.nobc-button-fake.nobc-button-ghost {
    background-color: transparent;
    color: var(--primary-300);
}

.nobc-button.nobc-button-ghost:hover {
    background-color: var(--primary-50-muted);
}

.nobc-button.nobc-button-ghost:active, .nobc-button.nobc-button-ghost.active {
    background-color: var(--primary-55-muted);
}

.nobc-button-group {
    display: flex;
    gap: 1px;
}

.nobc-button-group .nobc-button {
    border-radius: 0;
}

.nobc-button-group > .nobc-button:first-child, .nobc-button-group > :first-child .nobc-button {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.nobc-button-group > .nobc-button:last-child, .nobc-button-group > :last-child .nobc-button {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

/* LINK */

.nobc-link {
    cursor: pointer;
    color: var(--primary-300);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: fit-content;
    background: none;
    border: none;
}

.nobc-link:hover {
    text-decoration: underline;
}

/* CLICKABLE ELEMENT */

.nobc-clickable {
    background-color: var(--primary-50);
    border: 1px solid var(--primary-50);
    padding: 10px;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    align-items: center;
}

.nobc-clickable:hover {
    background-color: var(--primary-55);
    border: 1px solid var(--primary-200);
}

/* INPUT */

.nobc-field {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.nobc-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-400-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nobc-field .nobc-label {
    margin-bottom: 8px;
}

.nobc-field .nobc-button {
    height: 46px;
}

.nobc-input {
    width: 100%;
    min-height: 46px;
    padding: 10px;
    border-radius: 2px;
    border: 1px solid var(--neutral-75);
    background: var(--white);
}

.nobc-input[disabled] {
    background-color: var(--neutral-50);
}

.nobc-input.nobc-input-ghost {
    border: none;
    background: transparent;
    padding: 0;
    min-height: 0;
}

.nobc-input.nobc-item {
    /* Pour prendre la priorité sur le padding de nobc-item */
    padding: 10px;
}

.nobc-input.nobc-warning,
.nobc-select.nobc-warning{
    border: 1px solid var(--warning);
}

.nobc-input.nobc-error,
.nobc-select.nobc-error{
    border: 1px solid var(--error);
}

.nobc-input:hover:not([disabled], [readonly], .disabled) {
    border: 1px solid var(--primary-75);
}

.nobc-input:focus-visible:not([disabled], [readonly], .disabled) {
    outline: none;
    border: 1px solid var(--primary-200);
}

.nobc-select, .nobc-date-input, .nobc-searchbar, .nobc-amount-input, .nobc-number-input {
    width: 100%;
    position: relative;
}

.nobc-select .nobc-input, .nobc-searchbar .nobc-input, .nobc-amount-input .nobc-input {
    padding-right: 40px;
}

.nobc-select::after, .nobc-date-input::after, .nobc-searchbar::after, .nobc-amount-input::after, .nobc-number-input::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.nobc-amount-input.nobc-amount-input-left .nobc-input {
    padding-left: 40px;
    padding-right: 10px;
}

.nobc-number-input .nobc-input {
    padding-left: 70px;
}

.nobc-amount-input.nobc-amount-input-left::after, .nobc-number-input::after {
    left: 8px;
}

.nobc-select::after {
    background: url("../icons/sy-arrow-chevron-down.svg") no-repeat center center;
}

.nobc-select:has(.nobc-input[disabled])::after {
    background: url("../icons/sy-arrow-chevron-down-grey.svg") no-repeat center center;
}

.nobc-select:has(.nobc-input:focus)::after {
    transform: translateY(-50%) rotate(180deg);
}

.nobc-searchbar::after {
    background: url("../icons/sy-tools-search.svg") no-repeat center center;
}

.nobc-date-input::after {
    background: url("../icons/sy-datetime-calendar.svg") no-repeat center center;
}

/* L'icône calendrier native ne peut pas être cachée sur Firefox,
   on n'ajoute donc pas l'icône personnalisée sur Firefox avec ce petit hack */
@-moz-document url-prefix() {
  .nobc-date-input::after {
        background: none !important;
    }
}

.nobc-amount-input::after {
    content: "EUR";
    color: var(--primary-300-muted);
    width: 30px;
}

.nobc-number-input::after {
    content: "Nombre";
    color: var(--primary-300-muted);
    width: 30px;
}

.nobc-checkbox {
    margin: 4px;
    accent-color: var(--primary-200);
    cursor: pointer;
}

.nobc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.nobc-radio {
    margin: 4px 8px 4px 4px !important;
    accent-color: var(--primary-200);
    cursor: pointer;
}

.nobc-radio-label {
    cursor: pointer;
}

.nobc-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.nobc-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.nobc-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.nobc-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .nobc-slider {
    background-color: var(--primary-200);
}

input:focus + .nobc-slider {
    box-shadow: 0 0 1px var(--primary-200);
}

input:checked + .nobc-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* On cache les input de type 'fichier'. On les utilise avec des label pour pouvoir les personnaliser */
.nobc-file-input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

/* NAVBAR */

ul.nobc-navbar {
    display: flex;
    height: 100%;
}

ul.nobc-navbar li {
    color: var(--neutral-400);
    padding: 0 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    position: relative;
    text-wrap: nowrap;
}

ul.nobc-navbar li:hover {
    background-color: var(--neutral-55);
}

ul.nobc-navbar li:active {
    background-color: var(--neutral-65);
}

ul.nobc-navbar li.active {
    color: var(--primary-300);
    box-shadow: 0px -3px 0px inset var(--primary-300);
}

/* MENU */

.nobc-menu-container {
    width: 25%;
    padding-right: 24px;
}

ul.nobc-menu {
    position: sticky;
    top: 40px;
}

ul.nobc-menu li {
    color: var(--primary-300);
    padding: 12px 20px;
    cursor: pointer;
}

ul.nobc-menu li:hover {
    background-color: var(--primary-50);
}

ul.nobc-menu li.active {
    background-color: var(--primary-55);
    box-shadow: 3px 0px 0px inset var(--primary-300);
}

/* BREADCRUMB */

ol.nobc-breadcrumb {
    display: flex;
    gap: 4px;
}

ol.nobc-breadcrumb li, ol.nobc-breadcrumb span {
    font-size: 14px;
    color: var(--white);
    opacity: 0.5;
}

ol.nobc-breadcrumb li:hover {
    opacity: 1;
    text-decoration: underline;
    cursor: pointer;
}

ol.nobc-breadcrumb li:last-child {
    opacity: 1;
}

/* DROPDOWN */

.nobc-dropdown {
    position: relative;
    display: inline-block;
}

.nobc-dropdown .nobc-dropdown-checkbox {
    display: none;
}

.nobc-dropdown .nobc-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: var(--white);
    box-shadow: 0px 8px 16px 0px rgba(34, 34, 34, 0.30), 0px 0px 8px 0px rgba(34, 34, 34, 0.02);
    border-radius: 2px;
    z-index: 1;
    overflow-y: auto;
}

.nobc-dropdown .nobc-dropdown-content.nobc-dropdown-content-fixed-height {
    max-height: 250px;
}

.nobc-dropdown .nobc-dropdown-checkbox:checked ~ .nobc-dropdown-content,
.nobc-dropdown:not(:has(.nobc-dropdown-checkbox)):focus-within .nobc-dropdown-content {
    display: block;
}

.nobc-dropdown-content .nobc-dropdown-element {
    padding: 8px 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nobc-dropdown-content .nobc-dropdown-element:hover {
    background-color: var(--primary-50);
}

.nobc-dropdown-content .nobc-dropdown-element.active {
    color: var(--white);
    background-color: var(--primary-300);
}

/* COLLAPSE */

.nobc-collapse-toggle {
    display: none;
}

.nobc-collapse-label {
    cursor: pointer;
    position: relative;
}

.nobc-collapse-label::after {
    content: url("../icons/sy-arrow-chevron-down.svg");
    font-size: 30px;
    transform: translateY(-50%);
    position: absolute;
    right: 0;
    top: 50%;
}

.nobc-collapse-toggle:checked + .nobc-collapse-label::after {
    transform: translateY(-50%) rotate(180deg);
}

.nobc-collapse-content {
    max-height: 0;
    overflow: hidden;
}

.nobc-collapse-toggle:checked + .nobc-collapse-label + .nobc-collapse-content {
    max-height: 1000px;
}

/* TABS */

.nobc-tabs {
    display: flex;
}

.nobc-tabs::after {
    content: "";
    flex: 1;
    box-shadow: 0px -2px 0px inset var(--neutral-65);
}

.nobc-tabs .nobc-tab {
    padding: 12px;
    text-align: center;
    color: var(--primary-300);
    box-shadow: 0px -2px 0px inset var(--neutral-65);
    cursor: pointer;
}

.nobc-tabs .nobc-tab:hover {
    background-color: var(--neutral-55);
}

.nobc-tabs .nobc-tab:active {
    background-color: var(--neutral-65);
}

.nobc-tabs .nobc-tab.active {
    box-shadow: 0px -2px 0px inset var(--primary-300);
}

/* LIST */

.nobc-list {
    border-radius: 4px;
    box-shadow: 0px 2px 2px 0px rgba(34, 34, 34, 0.08);
    overflow: hidden;
}

.nobc-list-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 28px;
    margin-bottom: 20px;
}

.nobc-list-divider {
    border-bottom: 1px solid var(--neutral-55);
    width: 100%;
    font-size: 14px;
    color: var(--neutral-200);
    margin-top: 40px;
    margin-bottom: 24px;
}

.nobc-group-header {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-300-muted);
}

.nobc-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 16px;
    gap: 10px;
}

.nobc-item .nobc-item-content {
    padding: 16px 16px 16px 0;
    flex: 1;
    min-width: 0; /* Pour pouvoir mettre overflow-ellipsis sur les enfants */
    display: flex;
    align-items: center;
    gap: 10px;
}

.nobc-item.nobc-item-large .nobc-item-content {
    padding: 16px 24px 16px 0;
}

.nobc-item:has(.nobc-item-content) {
    padding: 0 0 0 16px;
}

.nobc-item.nobc-item-large:has(.nobc-item-content) {
    padding: 0 0 0 24px;
    gap: 16px;
}

.nobc-item:not(:last-of-type) .nobc-item-content.nobc-item-border {
    border-bottom: 1px solid var(--neutral-55);
}

.nobc-item-clickable:not(.disabled):hover {
    cursor: pointer;
    background-color: var(--primary-50);
}

.nobc-item-clickable:not(.disabled):active {
    background-color: var(--primary-55);
}

.nobc-item.selected {
    background-color: var(--primary-50);
}

.nobc-item.nobc-item-border-selected.selected {
    box-shadow: 3px 0px 0px inset var(--primary-300);
}

.nobc-item.disabled {
    background-color: var(--neutral-50);
    color: var(--neutral-300);
}

.nobc-item.disabled .nobc-avatar {
    background-color: var(--primary-55-muted) !important;
    color: var(--neutral-300) !important;
}

/* AMOUNT */

.nobc-amount {
    font-weight: 500;
}

/* NOTIFICATION */

.nobc-notification {
    width: 100%;
    padding: 16px 12px;
    border-radius: 4px;
    border: 1px solid var(--info);
    border-left-width: 4px;
    background-color: var(--white);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.nobc-notification.nobc-success {
    border-color: var(--success);
}

.nobc-notification.nobc-error {
    border-color: var(--error);
}

.nobc-notification.nobc-warning {
    border-color: var(--warning);
}

/* NOTIFICATION */

.nobc-toast {
    position: fixed;
    z-index: 1000;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
    max-width: 700px;
    padding: 16px 48px 16px 12px;
    border-radius: 4px;
    border: 1px solid var(--info);
    border-left-width: 4px;
    background-color: var(--white);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    box-shadow: 0px 12px 24px 0px rgba(34, 34, 34, 0.40), 0px 0px 10px 0px rgba(34, 34, 34, 0.02);
}

.nobc-toast.nobc-success {
    border-color: var(--success);
}

.nobc-toast.nobc-error {
    border-color: var(--error);
}

.nobc-toast.nobc-warning {
    border-color: var(--warning);
}

.nobc-toast-close-button {
    position: absolute;
    top: 16px;
    right: 12px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

/* BADGE */

.nobc-badge {
    line-height: 20px;
    border-radius: 2px;
    padding: 2px 8px;
    font-size: 14px;
    display: flex;
    gap: 8px;
    width: fit-content;
    justify-content: center;
    align-items: center;
    color: var(--neutral-400);
}

.nobc-badge.active {
    background-color: var(--neutral-55);
}

.nobc-badge.nobc-info {
    color: var(--info);
}

.nobc-badge.nobc-info.active {
    background-color: var(--info-background);
}

.nobc-badge.nobc-success {
    color: var(--success);
}

.nobc-badge.nobc-success.active {
    background-color: var(--success-background);
}

.nobc-badge.nobc-warning {
    color: var(--warning);
}

.nobc-badge.nobc-warning.active {
    background-color: var(--warning-background);
}

.nobc-badge.nobc-error {
    color: var(--error);
}

.nobc-badge.nobc-error.active {
    background-color: var(--error-background);
}

.nobc-badge.nobc-opposed {
    color: var(--neutral-200);
}

.nobc-badge.nobc-opposed.active {
    background-color: var(--neutral-55);
}

.nobc-badge.nobc-resilied {
    color: var(--neutral-200);
}

.nobc-badge.nobc-resilied.active {
    background-color: var(--white);
}

.nobc-badge-menu {
    position: absolute;
    left: 26px;
    top: 14px;
    width: 20px;
    height: 20px;
    padding: 0px;
    font-size: 14px;
    border-radius: 10px;
    color: var(--white);
    background-color: var(--error);
}

/* TOOLTIP (QTIP) */

.nobc-tooltip {
    line-height: 1.5;
    background-color: var(--white);
    border-color: var(--white);
    box-shadow: 0px 4px 8px 0px rgba(34, 34, 34, 0.15), 0px 0px 6px 0px rgba(34, 34, 34, 0.02);
    font-size: 14px;
}

/* LOADER */

.nobc-loader {
    position: absolute;
    height: 75px;
    margin: 50px 0;
    width: 100%;
    background: url("../icons/spinner.svg") no-repeat center;
}

.nobc-loader-center {
    width: 75px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -53%);
}

.nobc-loader-embed {
    position: static;
    height: 40px;
    width: 40px;
    margin: 0;

}

/* AVATAR */

.nobc-avatar {
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--primary-55-muted);
    text-transform: uppercase;
}

/* TABLE */

table.nobc-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

table.nobc-table.nobc-table-auto {
    table-layout: auto;
}

table.nobc-table tr {
    background: var(--white);
}

table.nobc-table tr:not(.borderless) {
    border-bottom: 1px solid var(--neutral-65);
}

table.nobc-table tr.nobc-table-row-clickable:hover {
    background: var(--primary-50);
    cursor: pointer;
}

table.nobc-table tr.disabled {
    background-color: var(--neutral-50);
    color: var(--neutral-300);
}

table.nobc-table tr.selected {
    background-color: var(--primary-55);
}

table.nobc-table td {
    padding: 12px 16px;
    text-align: left;
}

table.nobc-table th {
    padding: 12px 16px;
    color: var(--primary-300);
    font-size: 14px;
    font-weight: 700;
    text-align: left;
}

table.nobc-table tr.nobc-table-group-header {
    background-color: var(--neutral-50);
    color: var(--neutral-300);
    font-size: 14px;
}

table.nobc-table .nobc-cell-fit {
    width: 1%;
    min-width: 56px;
    white-space: nowrap;
}

/* MODAL */

.nobc-modal {
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.2);
}

.nobc-modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -53%);
    margin: 20px;
    width: 700px;
    max-height: 95vh;
    overflow: auto;
    background-color: var(--white);
    box-shadow: 0px 12px 24px 0px rgba(34, 34, 34, 0.40), 0px 0px 10px 0px rgba(34, 34, 34, 0.02);
}

.nobc-modal.nobc-modal-small .nobc-modal-content {
    width: 400px;
}

.nobc-modal-content.order-detail {
    min-height: 510px;
}

.nobc-modal-content.order-detail .order-detail-title img {
    height: 18px;
}

.nobc-modal-content.order-detail .nobc-button-ghost {
    padding: 4px 16px;
}

/* PRODUCT SELECTED */
.nobc-product-selected {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-50);
}

.nobc-product-selected .nobc-remove-product {
    cursor: pointer;
}

/* CB */
.nobc-cb {
    position: relative;
    width: 301px;
    height: 190px;
}

.nobc-cb-content {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 301px;
    top: 0;
    border-radius: 8px;
}

.nobc-box{
    width: 100%;
    border: 1px solid;
    border-color : var(--neutral-75);
}

.nobc-box-shadow {
    box-shadow: rgba(67, 71, 85, 0.27) 0 0 0.05em, rgba(90, 125, 188, 0.05) 0 0.2em;
}

/* Authent */
.qr-expired {
    width: 180px;
    height: 180px;
    position: relative;
}

.qr-expired span {
    position: absolute;
    top: 55%;
    left: 20%;
    right: 20%;
    font-size: 11px;
    color: rgb(0, 94, 93) !important;
    text-align: center;
}

.btn-refresh-qr {
    background: url("../img/refresh-qr.png") no-repeat scroll center;
    background-size: 30px;
    position: absolute;
    top:45%;
    left:50%;
    width: 30px;
    height: 30px;
    border: none;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
