/* PLUGIN CSS */
.vbo-spinner-third { width: 75px; height: 75px; border: 4px solid transparent; border-radius: 50%; background: transparent; }
.vbo-spin { -webkit-animation: spin 2s infinite linear; animation: spin 2s infinite linear; }
@keyframes spin { from {transform:rotate(0deg);} to {transform:rotate(359deg);} }
@-moz-keyframes spin { from {-moz-transform:rotate(0deg);} to {-moz-transform:rotate(359deg);} }
@-webkit-keyframes spin { from {-webkit-transform:rotate(0deg);} to {-webkit-transform:rotate(359deg);} }
#LayerDisableForPayments { position: fixed; left: 0px; top: 0px; width: 100%; height: 100%; z-index: 999999; background-color: rgba(255, 255, 255, 0.8); display: none; cursor: not-allowed; text-align: center; }
#LayerDisabledWrapper { width: calc(100% - 40px); max-width: 500px; }
#LayerDisabledSpinner { margin: 30px auto 15px auto; } 
.LayerDisabledInfoWrapper { padding: 15px 15px 30px 15px; text-align: center; background-color: rgba(255, 255, 255, 1); border: 1px solid #ccc; border-radius: 20px; }
.LayerDisabledInfo { padding: 0 0 20px 0; font-size: 20px; font-weight: 100; font-family: 'Roboto', Arial, Helvetica, sans-serif; color: #333; max-width: 500px; line-height: 1.5; }
.ScrollBarThin { scrollbar-width: none; -ms-overflow-style: none; scrollbar-color: #dadada #fff; }
.ScrollBarThin::-webkit-scrollbar { width: 5px;	height: 15px; display: none; }
.ScrollBarThin::-webkit-scrollbar-thumb { background: #c5c5c5; }

/*!
 * Snackbar v0.1.14
 * http://polonel.com/Snackbar
 *
 * Copyright 2018 Chris Brame and other contributors
 * Released under the MIT license
 * https://github.com/polonel/Snackbar/blob/master/LICENSE
 * class names changed to vbo-snackbar-container for compatibility by Jonas
 */
.vbo-snackbar-container {
	transition: all 500ms ease;
	transition-property: top, right, bottom, left, opacity;
	font-family: Roboto, sans-serif;
	font-size: 14px;
	font-weight: bold !important;
	min-height: 14px;
	background-color: #070b0e;
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: white;
	line-height: 22px;
	padding: 18px 24px;
	margin: 15px; /* Changed by Jonas */
	bottom: -100px;
	top: -100px;
	opacity: 0;
	z-index: 999999999999; }

.vbo-snackbar-container .action {
    background: inherit;
    display: inline-block;
    border: none;
    font-size: inherit;
    text-transform: uppercase;
    color: #4caf50;
    margin: 0 0 0 24px;
    padding: 0;
    min-width: min-content;
    cursor: pointer; }

@media (min-width: 640px) {
  .vbo-snackbar-container {
    min-width: 288px;
    max-width: 568px;
    display: inline-flex;
    border-radius: 0px;
    margin: 24px; } }

@media (max-width: 640px) {
  .vbo-snackbar-container {
    left: 0;
    right: 0;
    width: 100%; } }

.snackbar-pos.bottom-center {
	top: auto !important;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0); }

.snackbar-pos.bottom-left {
	top: auto !important;
	bottom: 0;
	left: 0; }

.snackbar-pos.bottom-right {
	top: auto !important;
	bottom: 0;
	right: 0; }

.snackbar-pos.top-left {
	bottom: auto !important;
	top: 0;
	left: 0; }

.snackbar-pos.top-center {
	bottom: auto !important;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0); }

.snackbar-pos.top-right {
	bottom: auto !important;
	top: 0;
	right: 0; }

@media (max-width: 640px) {
	.snackbar-pos.bottom-center, .snackbar-pos.top-center {
	left: 0;
	transform: none; } }



