/* Flexbox */

.flexbox, .flex-row-left-top, .flex-row-left-center, .flex-row-sb-top, .flex-row-sb-center, .flex-row-sb-bottom, .flex-row-left-bottom, .flex-row-center-top, .flex-row-center-center, .flex-row-right-top, .flex-row-right-center, .flex-column-top-left, .flex-column-top-center, .flex-column-top-right, .flex-column-top-stretch, .flex-column-bottom-left, .flex-column-bottom-right, .flex-column-sb-left, .flex-column-center-left, .flex-column-center-center, .flex-column-sb-center {
  display: flex;
}
.flexbox-row, .flex-row-left-top, .flex-row-left-center, .flex-row-sb-top, .flex-row-sb-center, .flex-row-sb-bottom, .flex-row-left-bottom, .flex-row-center-top, .flex-row-center-center, .flex-row-right-top, .flex-row-right-center {
  flex-direction: row;
}
.flexbox-column, .flex-column-top-left, .flex-column-top-center, .flex-column-top-right, .flex-column-top-stretch, .flex-column-bottom-left, .flex-column-bottom-right, .flex-column-sb-left, .flex-column-center-left, .flex-column-center-center, .flex-column-sb-center {
  flex-direction: column;
}
.flex-row-left-top {
  justify-content: flex-start;
  align-items: flex-start;
}
.flex-row-left-top.wrap {
  flex-wrap: wrap;
}
.flex-row-left-center {
  justify-content: flex-start;
  align-items: center;
}
.flex-row-sb-top {
  justify-content: space-between;
  align-items: flex-start;
}
.flex-row-sb-center {
  justify-content: space-between;
  align-items: center;
}
.flex-row-sb-bottom {
  justify-content: space-between;
  align-items: flex-end;
}
.flex-row-left-bottom {
  justify-content: flex-start;
  align-items: flex-end;
}
.flex-row-center-top {
  justify-content: center;
  align-items: flex-start;
}
.flex-row-center-center {
  justify-content: center;
  align-items: center;
}
.flex-row-right-top {
  justify-content: flex-end;
  align-items: flex-start;
}
.flex-row-right-center {
  justify-content: flex-end;
  align-items: center;
}
.flex-column-top-left {
  justify-content: flex-start;
  align-items: flex-start;
}
.flex-column-top-center {
  justify-content: flex-start;
  align-items: center;
}
.flex-column-top-right {
  justify-content: flex-start;
  align-items: flex-end;
}
.flex-column-top-stretch {
  justify-content: flex-start;
  align-content: stretch;
}
.flex-column-bottom-left {
  justify-content: flex-end;
  align-items: flex-start;
}
.flex-column-bottom-right {
  justify-content: flex-end;
  align-items: flex-end;
}
.flex-column-sb-left {
  justify-content: space-between;
  align-items: flex-start;
}
.flex-column-center-left {
  justify-content: center;
  align-items: flex-start;
}
.flex-column-center-center {
  justify-content: center;
  align-items: center;
}
.flex-column-sb-center {
  justify-content: space-between;
  align-items: center;
}

/* Generics */


.ptr {
  cursor: pointer;
}
.rel {
  position: relative;
}
.rght {
  float: right;
}
.bld {
  font-weight: bold;
}
.clck {
  cursor: pointer;
}
.ctr {
  text-align: center;
}
.flx {
  display: flex;
}
.flx-1x {
  flex-grow: 1;
}
.flx-2x {
  flex-grow: 2;
}
.flx-b-ctr {
  align-items: center;
  justify-content: center;
}
.flx-h-ctr {
  justify-content: center;
}
.flx-no-bs {
  flex-basis: 0;
}
.flx-rght {
  justify-content: flex-end;
}
.flx-sp-bet {
  justify-content: space-between;
}
.flx-v-ctr {
  align-items: center;
}
.flx-wrp {
  flex-wrap: wrap;
}
.fnt-lght {
  font-family: 'Roboto-light';
}
.fnt-med {
  font-family: 'Roboto-medium';
}
.fnt-thn {
  font-family: 'Roboto-thin';
}
.hght-auto {
  height: auto !important;
}
.lft {
  float: left;
}
.mgn-h-5 {
  margin: 0px 10px;
}
.mgn-l-5 {
  margin-left: 5px important;
}
.mgn-r-5 {
  margin-right: 5px !important;
}
.clck {
  cursor: pointer;
}
.ctr {
  text-align: center;
}
.flx-col {
  flex-direction: column;
}
.red-txt {
  color: #900;
}

/* Popups */

.device-popup {
  align-items: center;
  background: #fff;
  box-shadow: 0px 0px 40px 4px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  min-height: 160px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 435px;
  z-index: 5;
}

.device-popup-close {
  background: #fff;
  box-shadow: 0px 0px 40px 4px rgba(0,0,0,0.2);
  min-height: 200px;
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  z-index: 5;
}

.device-popup-close-hdr {
  display: flex;
  justify-content: flex-end;
  min-height: 35px;
  padding: 5px;
  width: 100%;
  z-index: 5;
}

.device-popup-close-hdr img{
  z-index: 1;
}

.device-popup-close-cont {
  bottom: 15px;
  display: flex;
  justify-content: space-between;
  min-height: 165px;
  position: relative;
  padding: 15px;
}

.device-popup-btm {
  display: flex;
  justify-content: space-between;
  width: 350px;
}

.mar-top-20 {
	margin-top: 20px;
}

.wid-100-per {
  width: 100%;
}

.wid-175 {
  width: 175px;
}

.pos-top--40 {
  position: relative;
  top: -40px;
}

.tt-overlay {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 6;
  background: rgba(0,0,0,0.2);
}
.bouncein-animate {
  transform-origin: center center;
  animation: bounceIn 0.8s both ease;
}
.bounceout-animate {
  transform-origin: center center;
  animation: bounceOut 0.8s both ease;
}
@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0);
	}
	30% {
		opacity: 0;
		transform: scale(.1);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes bounceOut {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(0);
	}
}
@font-face {
  font-family: 'Roboto-Regular';
  src: url("../../fonts/Roboto-Regular.ttf");
}

@font-face {
  font-family: 'Roboto-Thin';
  src: url("../../fonts/Roboto-Thin.ttf");
}

@font-face {
  font-family: 'Roboto-Medium';
  src: url("../../fonts/Roboto-Medium.ttf");
}

@font-face {
  font-family: 'Roboto-Black';
  src: url("../../fonts/Roboto-Black.ttf");
}

@font-face {
  font-family: 'Roboto-Light';
  src: url("../../fonts/Roboto-Light.ttf");
}

::-webkit-scrollbar-thumb {
  background: #98999B;
  -webkit-border-radius: 6px;
}
::-webkit-scrollbar-track-piece {
  background-color: #fff;
  -webkit-border-radius: 6px;
}
::-webkit-scrollbar-button {
  background-color: #fff;
  height: 0;
}
::-webkit-scrollbar-corner {
  display: none;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb:vertical {
  -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:horizontal {
  -webkit-border-radius: 6px;
}