
* {
	box-sizing: border-box;
    margin: 0;
    padding: 0;
}
@-webkit-keyframes colorSwapper {
  0% {
    background-color: #955fad;
    background-image: -webkit-linear-gradient(#955fad, #da5b45);
    background-image: linear-gradient(#955fad, #da5b45);
  }
  50% {
    background-color: #da5b45;
    background-image: -webkit-linear-gradient(#da5b45, #955fad);
    background-image: linear-gradient(#da5b45, #955fad);
  }
  100% {
    background-color: #955fad;
    background-image: -webkit-linear-gradient(#955fad, #da5b45);
    background-image: linear-gradient(#955fad, #da5b45);
  }
}
@-moz-keyframes colorSwapper {
  0% {
    background-color: #955fad;
    background-image: -webkit-linear-gradient(#955fad, #da5b45);
    background-image: linear-gradient(#955fad, #da5b45);
  }
  50% {
    background-color: #da5b45;
    background-image: -webkit-linear-gradient(#da5b45, #955fad);
    background-image: linear-gradient(#da5b45, #955fad);
  }
  100% {
    background-color: #955fad;
    background-image: -webkit-linear-gradient(#955fad, #da5b45);
    background-image: linear-gradient(#955fad, #da5b45);
  }
}
@keyframes colorSwapper {
  0% {
    background-color: #955fad;
    background-image: -webkit-linear-gradient(#955fad, #da5b45);
    background-image: linear-gradient(#955fad, #da5b45);
  }
  50% {
    background-color: #da5b45;
    background-image: -webkit-linear-gradient(#da5b45, #955fad);
    background-image: linear-gradient(#da5b45, #955fad);
  }
  100% {
    background-color: #955fad;
    background-image: -webkit-linear-gradient(#955fad, #da5b45);
    background-image: linear-gradient(#955fad, #da5b45);
  }
}
@-webkit-keyframes solidColor {
  0% {
    background-color: #955fad;
  }
  50% {
    background-color: #da5b45;
  }
  100% {
    background-color: #955fad;
  }
}
@-moz-keyframes solidColor {
  0% {
    background-color: #955fad;
  }
  50% {
    background-color: #da5b45;
  }
  100% {
    background-color: #955fad;
  }
}
@keyframes solidColor {
  0% {
    background-color: #955fad;
  }
  50% {
    background-color: #da5b45;
  }
  100% {
    background-color: #955fad;
  }
}
html, body {
  height: 100%;
}

body {
  color: #FFF;
}

.skewed-bg {
	background: rgb(9,76,121);
	background: linear-gradient(90deg, rgb(21, 101, 155) 0%, rgb(0, 177, 221) 100%);
  padding: 200px 0;
  -webkit-transform: skew(0deg, -10deg);
  -moz-transform: skew(0deg, -10deg);
  -ms-transform: skew(0deg, -10deg);
  -o-transform: skew(0deg, -10deg);
  transform: skew(0deg, -10deg);
  margin-top: -200px;
}
.skewed-bg .content {
  -webkit-transform: skew(0deg, 10deg);
  -moz-transform: skew(0deg, 10deg);
  -ms-transform: skew(0deg, 10deg);
  -o-transform: skew(0deg, 10deg);
  transform: skew(0deg, 10deg);
  text-align: center;
}
.skewed-bg .content .title {
  padding-top: 100px;
}
.skewed-bg .content .text {
  width: 60%;
  margin: 25px auto;
  color: #ccfff2;
}







/*inputs*/
.transition, #form_ a,#form_ button, #form_ .question label, #form_ .question input[type="text"] {
  -moz-transition: all 0.25s cubic-bezier(0.53, 0.01, 0.35, 1.5);
  -o-transition: all 0.25s cubic-bezier(0.53, 0.01, 0.35, 1.5);
  -webkit-transition: all 0.25s cubic-bezier(0.53, 0.01, 0.35, 1.5);
  transition: all 0.25s cubic-bezier(0.53, 0.01, 0.35, 1.5);
}



#form_ {
  position: relative;
  display: inline-block;
  left: 50%;
  max-width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  padding: 30px 25px;
  background-color: transparent;
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
#form_ h1 {
  color: white;
  font-weight: 100;
  margin-left: 15px;
  margin-bottom: 1%;
}
#form_ a,#form_ button {
  margin-top: 30px;
	width: 10%;
  background-color: transparent;
  border: 1px solid white;
  line-height: 0;
  font-size: 17px;
  display: inline-block;
  box-sizing: border-box;
  padding: 20px 15px;
  border-radius: 5px;
  color: white;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
#form_ a:hover, #form_ a:focus,#form_ button:hover, #form_ button:focus {
	background-color: #03a4d5;
	transition-duration: .4s;
}
#form_ .question {
  position: relative;
  padding: 10px 0;
}
#form_ .question:first-of-type {
  padding-top: 0;
}
#form_ .question:last-of-type {
  padding-bottom: 0;
}
#form_ .question label {
  transform-origin: left center;
  color: inherit;
  font-weight: 100;
  font-size: 17px;
  box-sizing: border-box;
  padding: 10px 15px;
  display: block;
  position: absolute;
  margin-top: -50px;
  z-index: 2;
  pointer-events: none;
}
#form_ .question input{
  appearance: none;
  background-color: none;
  border: 1px solid #00B285;
  line-height: 0;
  font-size: 17px;
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 10px 15px;
  border-radius: 8px;
  color: black;
  font-weight: 100;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}
#form_ .question input[type="text"]:focus {
  outline: none;
  background: white;
  color: black;
  margin-top: 0px;
}
#form_ .question input[type="text"]:valid {
  margin-top: 0;
}
#form_ .question input[type="text"]:focus ~ label {
  -moz-transform: translate(0, -35px);
  -ms-transform: translate(0, -35px);
  -webkit-transform: translate(0, -35px);
  transform: translate(0, -35px);
}
#form_ .question input[type="text"]:valid ~ label {
  text-transform: uppercase;
  font-style: italic;
  -moz-transform: translate(5px, -35px) scale(0.6);
  -ms-transform: translate(5px, -35px) scale(0.6);
  -webkit-transform: translate(5px, -35px) scale(0.6);
  transform: translate(5px, -35px) scale(0.6);
}




/*invoice*/
#invoice-POS {
  box-shadow: 0 0 1in -0.25in rgba(0, 0, 0, 0.5);
  padding: 2mm;
  margin: 0 auto;
	width: 50%;
  background: #FFF;
}
@media only screen and (max-width: 1200px) {
  #invoice-POS {
    width: 100%;
  }
}
#invoice-POS ::selection {
  background: #f31544;
  color: #FFF;
}
#invoice-POS ::moz-selection {
  background: #f31544;
  color: #FFF;
}
#invoice-POS h1 {
  font-size: 1.5em;
  color: #222;
}
#invoice-POS h2 {
  font-size: 1em;
	color: black;
}
#invoice-POS h3 {
  font-size: 1.2em;
  font-weight: 300;
  line-height: 2em;
}
#invoice-POS p {
  font-size: .7em;
  color: black;
  line-height: 1.2em;
}
#invoice-POS #top, #invoice-POS #mid, #invoice-POS #bot {
  /* Targets all id with 'col-' */
  border-bottom: 1px solid #EEE;
}
#invoice-POS #top {
  min-height: 100px;
}
#invoice-POS #mid {
  min-height: 80px;
}
#invoice-POS #bot {
  min-height: 50px;
}
#invoice-POS #top .logo {
  height: 70px;
  width: 60px;
  background: url('../logo/favicon.png') no-repeat;
  background-size: 60px 70px;
}

#invoice-POS .info {
  display: block;
  margin-left: 0;
}
#invoice-POS .title {
  float: right;
}
#invoice-POS .title p {
  text-align: right;
}
#invoice-POS table {
  width: 100%;
  border-collapse: collapse;
}
#invoice-POS .tabletitle {
  font-size: .53m;
  background: #0081d969;
}
#invoice-POS .service {
  border-bottom: 1px solid #EEE;
}
.service{
  background-color: #00437b36;
}

#invoice-POS .itemtext {
  font-size: 11px;
}
#invoice-POS #legalcopy {
  margin-top: 5mm;
}


/*circle graph*/


#main {
  float: left;
  width: 750px;
}

#sidebar {
  float: right;
  width: 100px;
}

#sequence {
  width: 600px;
  height: 70px;
}

#legend {
  padding: 10px 0 0 3px;
}

#sequence text, #legend text {
  font-weight: 600;
  fill: #fff;
}

#chart {
  position: relative;
}

#chart path {
  stroke: #fff;
}

#explanation {
  position: absolute;
  top: 240px;
  left: 295px;
  width: 160px;
  font-size: 20px;
  text-align: center;
  color: #666;
  z-index: -1;
}
#percentage {
  font-size: 40px;
	color: white !important;
}

#scroll{
  height:280px;
  width:600px;
  border:1px solid #ccc;
  overflow:auto;
  margin-left:100px;
}


/*login*/



/*select*/


.pricing{
	padding-top: 5%;
}
.select {
cursor: pointer;
display: inline-block;
position: relative;
font-size: 16px;
color: #fff;
width: 220px;
height: 40px;
}

.select-styled {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: #0fcaac;
padding: 8px 15px;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
-webkit-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
}
.select-styled:after {
content: "";
width: 0;
height: 0;
border: 7px solid transparent;
border-color: #fff transparent transparent transparent;
position: absolute;
top: 16px;
right: 10px;
}
.select-styled:hover {
background-color: #0daa91;
}
.select-styled:active, .select-styled.active {
background-color: #08917b;
}
.select-styled:active:after, .select-styled.active:after {
top: 9px;
border-color: transparent transparent #fff transparent;
}

.select-options {
display: none;
position: absolute;
top: 100%;
right: 0;
left: 0;
z-index: 999;
margin: 0;
padding: 0;
list-style: none;
background-color: #0fcaac;
}
.select-options li {
margin: 0;
padding: 12px 0;
text-indent: 15px;
-moz-transition: all 0.15s ease-in;
-o-transition: all 0.15s ease-in;
-webkit-transition: all 0.15s ease-in;
transition: all 0.15s ease-in;
}
.select-options li:hover {
background: #f9dddd52;
}
.select-options li[rel="hide"] {
display: none;
}
/*button price*/






.container {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 1em;
  text-align: center;
}



.btn {
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 45px;
  margin: 0 0 2em;
  max-width: 160px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}
@media (min-width: 600px) {
  .btn {
    margin: 0 1em 2em;
  }
}
.btn:hover {
  text-decoration: none;
}

.btn-1 {
  background: #0fcaac;
  font-weight: 100;
}
.btn-1 svg {
  height: 45px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.btn-1 rect {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 422, 0;
  transition: all 0.35s linear;
}

.btn-1:hover {
  background: #085d8ba3;
  font-weight: 900;
  letter-spacing: 1px;
}
.btn-1:hover rect {
  stroke-width: 5;
  stroke-dasharray: 15, 310;
  stroke-dashoffset: 48;
  transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}

/*modal*/

/* The Modal (background) */
.modal {
  position: absolute;; /* Stay in place */
  z-index: 1; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	padding-left: 25%; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: absolute;
  background-color: #0f8aaca6;
  margin: auto;
  border: 1px solid #888;
  width: 50%;
	border: 1px solid white;
	border-radius: 4px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);

}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #00b7eadb;
  color: white;
	text-align: center;
	padding: 10px;
}
.modal-body p {
  color: black;
}
#extrainfo_invoice{
  width: 30%;
  border: 1px solid black;
  border-radius: 4px;
  padding: 3px;
}

.pgn{
  width: 25%;
  padding: 1%;
  border: 1px solid none;
  border-radius: 3px;
}

.pgn a{
  background-color: #01b7ea6b;
  margin-bottom: 3%;
  padding: 2%;
  border: 1px solid none;
  border-radius: 3px;
}

.pgn a:hover{
  background-color: #01b7eaa3;
  transition-duration: .3s;
}

#shine{
	background-color: #00a3ff;
}
#shine:hover{
	transition-duration: .3s;
	background-color: #1a91d5;
}

.shine:hover{
	transition-duration: .3s;
	background-color: #1a91d5;
}

#rbbtn{
	margin: 10px;
}


.fh{
	float: left;
	width: 50%;
}
.sh{
	float: right;
	width: 50%;
}
.select2-results { background-color: rgba(9,76,121,1); }
.select2-search { background-color: rgba(9,76,121,1); }
.select2-search input {
	 border-radius: 3px;
	 font-size: 20px;
 }


 #printdata{
   border: 1px solid white;
   background-color: rgba(160, 160, 160, 0.45);
   padding: 5px;
   border-radius: 2px;
   color: white;
 }

 .alert{
  border-color: #ff5353 !important;
}

.alert:hover{
  border-color: white !important;
  background-color: rgb(255, 91, 91) !important;
}



#action_button{
  background-color: #0851c1;
}
#action_button:hover{
  background-color: #00a3ff;
}