@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

:root {
	--main-color: #3D8E27;
	--main-color-hover: #347822;
	--warning-color: #D70000;
	--border-color-light: #E5E5E5;
	--background-light-grey: #EEE;
	--offset: 187;
	--duration: 1.4s;
}

/* SCROLLBAR STYLES */
::-webkit-scrollbar {
	width: 6px;
}
::-webkit-scrollbar-thumb {
	background-color: rgba(0,0,0,0.4);
	border-radius: 10rem;
	border: 1px solid transparent;
}


::-webkit-scrollbar-track-piece:start {
	background: transparent;
}

::-webkit-scrollbar-track-piece:end {
	background: transparent;
}

/* SPINNER */
/* $offset: 187;
$duration: 1.4s; */

.spinner {
  animation: rotator var(--duration) linear infinite;
}

@keyframes rotator {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(270deg); }
}

.path {
  stroke-dasharray: var(--offset);
  stroke-dashoffset: 0;
  stroke: var(--main-color);
  transform-origin: center;
  animation:
    dash var(--duration) ease-in-out infinite;
}

@keyframes dash {
	0% { stroke-dashoffset: var(--offset); }
	50% {
		stroke-dashoffset: calc(var(--offset)/4);
		transform:rotate(135deg);
	}
	100% {
		stroke-dashoffset: var(--offset);
		transform:rotate(450deg);
	}
}

/* ELEMENTS HTML, BODY */
html {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	color: #000;
	overflow: hidden;
}

body, html {
	margin: 0px;
	padding: 0px;
	height: 100%;
	background-color: #fff;
}

body {
/* 	min-width: 1300px; */
}

h2 {
	font-size: 20px;
	margin: 0;
	font-weight: normal;
}

input {
	font-family: 'Poppins', sans-serif;
	height: 40px;
	width: 250px;
	border: 1px solid var(--border-color-light);
	font-size: 15px;
	padding: 0 10px;
	outline: 0;
	
}

input.small {
	height: 30px;
	width: auto;
	max-width: 200px;
	box-sizing: border-box;
}

input.tel {
	padding: 0 10px 0 40px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: rgba(0, 0, 0, 0.3);
	opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: rgba(0, 0, 0, 0.3);
}

::-ms-input-placeholder { /* Microsoft Edge */
	color: rgba(0, 0, 0, 0.3);
}

@keyframes autofill {
  100% {
    background: transparent;
    color: inherit;
    font-size: inherit;
  }
}

@-webkit-keyframes autofill {
  100% {
    background: transparent;
    color: inherit;
    font-size: inherit;
  }
}

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	opacity: 0.8;
}

select {
	font-family: 'Poppins', sans-serif;
	line-height: 35px;
	font-size: 15px;
	height: 40px;
	padding: 0 10px;
	padding-right: 30px;
	border-radius: 0;
	border: 1px solid var(--border-color-light);
	outline: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: transparent;
	background-image: url('/img/icons-svg/icon-arrow-down.svg');
	background-repeat: no-repeat;
	background-position: right 10px top 50%;
	cursor: pointer;
}

select.small {
	height: 30px;
	line-height: 20px;
}

#mainWrapper {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#headerWrapper {
	height: 100px;
	width: 100%;
}

.usernameText {
	color: #7c7c7c;
	font-size: 13px;
	margin-right: 15px;
	text-shadow: 1px 1px rgba(255, 255, 255, 0.7);
}

.mainColor {
	color: var(--main-color);
}

.marginB10 {
	margin-bottom: 10px;
}

.flexContainer {
	display: flex;
}

.flexContainer.column {
	flex-direction: column;
}

.flexContainer.alignC {
	align-items: center;
}

.flexContainer.justifyC {
	justify-content: center;
}

.flex1 {
	flex: 1;
}

.textL {
	font-size: 16px
}

.uppercase {
	text-transform: uppercase;
}

.noMargin {
	margin: 0!important;
}

.pointer {
	cursor: pointer;
}

.width50percent {
	width: 50%;
}

/*** RESPONSIVE LAYOUT ***/

#headerWrapperR {
	height: 100px;
	position: absolute;
    width: 100%;
    z-index: 1;
}

#headerOutContainerR {
	max-width: 800px;
	margin: 0 auto;
	height: 100%;
}

#logoR {
	margin: 0 auto;
	height: 100%;
    width: 240px;
    text-align: center;
}

#logoR a {
	display: block;
    width: 126px;
    height: 100%;
    margin: 0px auto;
    background: url(/img/layout/moocall_logo.png) 50% 50% no-repeat;
}

#contentOutContainerR {
	max-width: 800px;
    margin: 0 auto;
    height: 500px;
    overflow: hidden;
    position: relative;
    top: 100px;
}

#contentOutContainerR #headerUserPass {
	height: 300px;
    padding: 20px;
    margin: 10px auto 0;
    max-width: 500px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#contentOutContainerR #headerUserPass input {
	margin: 20px auto;
	height: 30px;
}

/*** NEW GENERAL CLASSES ***/

.card {
	border: 1px solid var(--border-color-light);
	padding: 20px 15px;
	margin: 10px;
	font-size: 20px;
}

.card.grey {
	background-color: var(--background-light-grey);
}

.card.red {
	background-color: var(--warning-color);
	color: #fff;
}

.card.red a,
.card.green a {
	color: #fff;
}

.card.green {
	background-color: var(--main-color);
	color: #fff;
}

.card.grey {
	background-color: var(--background-light-grey);
}

.title,
.overlayTitle {
	padding: 0 10px 5px;
	border-bottom: 2px solid var(--main-color);
	margin-bottom: 30px;
	text-align: left;
}

.overlayTitle {
	font-size: 18px;
	margin-bottom: 10px;
}

.overlayContent {
	padding: 20px 10px;
	position: relative;
}

.cardP {
	margin: 20px 10px;
}

#contentOutFooter {
	border-top: 1px solid var(--border-color-light);
	font-size: 15px;
	padding: 20px 55px;
	width: 100%;
	box-sizing: border-box;
}

/*** GENERAL CLASSES ***/

.greyUnderline {
	border-bottom: 1px solid var(--border-color-light);
}

.left {
	float: left;
}

.right {
	float: right;
}

.op3 {
	opacity: 0.3;
}

.rad5 {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
}

.rad10 {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
}

.rad10BL {
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-bottom-left-radius: 10px;
	-o-border-bottom-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.rad10BR {
	-webkit-border-bottom-right-radius: 10px;
	-moz-border-bottom-right-radius: 10px;
	-o-border-bottom-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.rad15 {
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-o-border-radius: 15px;
	border-radius: 15px;
}

.glow10 {
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.45);
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.45);
	-o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.45);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.45);
}

.whiteBar {
	background: url(/img/bars/bar_white100.png) 50% 50% repeat-x;
}

.skyBg {
	background: -webkit-linear-gradient(#A3E8FF, #FFF 65%);
	background: -moz-linear-gradient(#A3E8FF, #FFF 65%);
	background: -o-linear-gradient(#A3E8FF, #FFF 65%);
	background: linear-gradient(#A3E8FF, #FFF 65%);
}

.white50bg {
	background: url(/img/layout/white50t_bg.png) 0 0;
}

.button, .buttonGreen {
	color: #fff;
	background-color: var(--main-color);
	padding: 5px 15px;
	border-radius: 2px;
	font-size: 15px;
	font-weight: 500;
	margin: 0 5px;
	width: auto;
	text-transform: uppercase;
	transition: background-color 0.2s ease;
	line-height: normal;
}

.button.clear {
	color: var(--main-color);
	background-color: #fff;
	border:1px solid var(--border-color-light);
}

.button.clear:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

button.button {
	border: 0;
}

.button.medium {
	font-size: 12px;
	padding: 6px 15px
}

.button.small, .buttonGreen.small {
	font-size: 12px;
	padding: 3px 12px;
}

.button.xs, .buttonGreen.xs {
	font-size: 11px;
	padding: 0px 8px;
	line-height: 22px;
}

.buttonClear {
    font-size: 14px;
    border: 1px solid var(--border-color-light);
	color: var(--main-color);
    padding: 5px 10px;
    border-radius: 3px;
}

button.buttonClear {
    border: 1px solid var(--border-color-light);
}

.buttonClear:hover {
	background: rgba(0, 0, 0, 0.05);
}

.button:hover, .buttonGreen:hover {
	background-color: var(--main-color-hover);
	cursor: pointer;
}

.blueText {
	color: #00A7DF;
}

.orangeText {
	color: #FF9326;
}

.greenText {
	color: #93C400;
}

.bgRed {
	background: #B71111;
}

.bgOrange {
	background: #FF9326;
}

.bgGreen {
	background: #93C400;
}

a.blueText:hover {
	color: #0092C1;
}

.brclear {
	clear: both;
}

.hidden {
	display: none!important;
}

.checkbox {
	display: none;
}

.smallCheckbox {
	display: inline-block;
	padding: 6px;
	border: 1px solid #a6a6a6;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2) inset;
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2) inset;
	-o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2) inset;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2) inset;
	background: #FFF;
	overflow: hidden;
}

.smallCheckbox:hover {
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4) inset;
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4) inset;
	-o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4) inset;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.4) inset;
}

.checkbox:checked + .smallCheckbox {
	background: #fff url(/img/icons/checked_small.png) 50% 50% no-repeat;
}

.checkboxGreen {
	display: inline-block;
	padding: 7px;
	border: 2px solid rgba(0, 0, 0, 0.5);
	border-radius: 3px;
	overflow: hidden;
	background: transparent;
	cursor: pointer;
}

.checkboxGreen:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.checkbox:checked + .checkboxGreen {
	border-color: var(--main-color);
	background: var(--main-color) url(/img/icons-svg/icon-checked.svg) 50% 50% no-repeat;
}

/* .selectBox {
	height: 25px;
	width: 150px;
	border-radius: 5px;
	border: 1px solid #a6a6a6;
	-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.25) inset;
	-moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.25) inset;
	-o-box-shadow: 0 0 6px rgba(0, 0, 0, 0.25) inset;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.25) inset;
	color: #a6a6a6;
	font-size: 15px;
	background: #fff url(/img/icons/select-box-arrow.png) right 5px center no-repeat;
}

.selectBox select {
	color: #a6a6a6;
	padding: 3px 25px 4px 6px;
	height: 25px;
	width: 100%;
	border: none;
	box-shadow: none;
	background-color: transparent;
	background-image: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 12px;
} */

.selectBoxDevice {
  	margin-top: 15px
}

.selectBoxDevice select {
	max-width: 100%;
}

.boxTitle {
	height: 35px;
	color: #fff;
	text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
	text-align: center;
	line-height: 35px;
	font-size: 18px;
	background: url(/img/layout/black20t_bg.png);
}

.selectedClientName {
	height: 35px;
	text-align: center;
	line-height: 1.7;
	font-size: 14px;
	margin-right: 4px;
	text-shadow: 0.3px 0.3px rgba(0, 0, 0, 0.5);
}

.superUserText{
	height: 35px;
	text-align: center;
	font-size: 14px;
}
.boxContent {
	margin-top: 5px;
	overflow: hidden;
	flex: 1;
}

.boxHeader {
	height: 60px;
	border-bottom: 1px solid var(--border-color-light);
	box-sizing: border-box;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.boxHeader input {
	max-width: 160px;
}

.listMessage {
	font-size: 30px;
	text-align: center;
	color: var(--main-color);
	position: absolute;
	top: 50%;
	width: 100%;
	margin-top: -40px;
}

.errorInput {
	border: 1px solid #B20000;
}

.list20spacer {
	height: 20px;
}

.backLogo {
	background: url(/img/layout/logo_watermark.png) 50% 50% no-repeat;
}

.subtitle {
	font-size: 16px;
	line-height: 50px;
}

.spacer_h {
	height: 50px;
	clear: both;
}

.empty {
	background: url(/img/layout/no-results.png) 50% 50% no-repeat;
}

.greyInfoCloud {
	height: 25px;
	background: #717C7F;
	line-height: 25px;
	position: relative;
	color: #fff;
	text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
	box-shadow: 1px 1px rgba(0, 0, 0, 0.5)inset, 1px 1px rgba(255, 255, 255, 0.5);
	display: inline-block;
	padding: 0 15px;
	font-size: 14px;
}

.greyInfoCloud .arrow-right {
	position: absolute;
    right: -5px;
    top: 7px;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;

	border-left: 5px solid #717C7F;
}

.greyInfoCloud .arrow-down {
	position: absolute;
    right: 68%;
    bottom: -10px;
    margin-right: -5px;
	width: 0;
	height: 0;
	border-top: 5px solid #717C7F;
	border-bottom: 5px solid transparent;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
}

.switchOff,
.switchOn {
	width: 37px;
	height: 16px;
	border: 1px solid #fff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color: #fff;
	text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
	text-align: center;
	line-height: 16px;
	font-size: 13px;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25) inset;
}

.switchOff {
	background: #FF9326;
}

.switchOn {
	background: #93C400;
}

.switchChild {
	width: 12px;
	height: 12px;
	margin: 2px;
	border-radius: 3px;
	background: #fff;
	box-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

.switchOn .switchChild {
	float: right;
}

.switchOff .switchChild {
	float: left;
}

/*** OVERLAY ***/

.blackOut {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 150;
	background-color: rgba(0, 0, 0, 0.2);
	overflow: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.loaderPlaceholder {
}

#overlayContainer .blackOut {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 200;
}

.overlayOuterWrapper {
	overflow: auto;
	width: 100%;
}

.overlayWindow {
	background: #fff;
	padding: 10px;
	margin: 0 auto;
}

.overlayFooter {
    height: 35px;
	color: #000;
	line-height: 35px;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid var(--border-color-light);
	text-align: right;
	display: flex;
    align-items: center;
    justify-content: flex-end;
}

.overlayFooter .button.small {
	background-color: transparent;
	color: var(--main-color);
	border: 1px solid var(--border-color-light);
	transition: background-color 0.2s ease;

}

.overlayFooter .button.small:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.overlayFooter .buttonGreen.small {
	background-color: var(--main-color);
	color: #fff;
	border: 1px solid var(--main-color);
	transition: background-color 0.2s ease;
}

.overlayFooter .buttonGreen.small:hover {
	background-color: var(--main-color-hover);
}

.overlayFooterOk {
	height: 35px;
	line-height: 35px;
	margin-top: 20px;
	margin-left: 176px;

}

.reportTextOk{
  text-align: center;
      font-family: Arial;
    font-size: 13.3333px;

}

.overlayRadio {
	   text-align: left;
	   padding: 10px 40px;
}

.infoContainerWrapper {
	position: absolute;
	bottom: 20%;
	width: 100%;
	z-index: 300;
}

.infoContainer {
	position: relative;
	width: 60%;
	margin: 0 auto;
	background: rgba(0, 0, 0, 0.5);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	color: #fff;
	text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
	text-align: center;
	font-size: 15px;
}

.infoContainerTitle {
	font-size: 20px;
	padding: 5px 20px 0;
}

.infoContainerClose {
	position: absolute;
	right: 15px;
	top: 10px;
	font-weight: bold;
	color: #fff;
}

.infoContainerClose:hover {
	opacity: 0.7;
}

.infoContainerDescription {
	padding: 0 20px 5px 20px;
}

.listHeader {
	border-bottom: 2px solid var(--main-color);
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1;
	font-size: 14px;
	padding: 8px 0;
}

.messageWindow {
	width: 400px;
}

.messageWindow .overlayContent {
	font-size: 14px;
	text-align: center;
	padding: 40px 10px;
	line-height: 20px;
}

/*** MENU ***/

#menuList {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 16px;
	text-shadow: 1px 1px rgba(255, 255, 255, 0.7);
	display: flex;
	align-items: center;
	height: 100%;
}

.menuListItem,
.menuListItemLink,
.menuListItemReport {
	
}

.menuListItem a,
.menuListItemLink a,
.menuListItemReport a {
	font-size: 16px;
	padding: 3px 0;
	margin: 0 15px;
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease-in-out
}

.menuListItem a:hover,
.menuListItemLink a:hover,
.menuListItemReport a:hover {
	color: var(--main-color);
}

.menuListItem a.active, .menuListItem a.active:hover {
	border-color: var(--main-color);
}

#grassBottom {
	height: 200px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background: url(/img/layout/grass_bg.png) 50% bottom repeat-x;
}

#contentWrapper {
	flex: 1;
}

@media only screen and (max-width: 1500px) {
	.menuListItem a,
	.menuListItemLink a,
	.menuListItemReport a {
		font-size: 14px;
		margin: 0 10px;
	}
}

@media only screen and (max-width: 1300px) {



}