* {
    font-family:  Pro Text,SF Pro Icons,Helvetica Neue,Helvetica,Arial,sans-serif;
}

h1 {font-size: 24px; font-weight: normal; margin:5px 10px;}
h2 {font-size: 20px; font-weight: normal; margin:5px 10px;}
h3 {font-size: 16px; font-weight: normal; margin:5px 10px;}
p  {font-size: 12px; font-weight: normal; margin:5px 10px;}
a  {font-size: 12px; font-weight: normal; text-decoration: none; color: #1976D2;}

.mon {font-family: monospace !important;}
.b {font-weight: bold !important;}
.ul {text-decoration: underline !important;}

.al {text-align: left !important;}
.ac {text-align: center !important;}
.ar {text-align: right !important;}

.acc {align-content: center !important;}

.fl {float: left !important;}
.fr {float: right !important;}

.jcs {justify-content: start !important;}
.jcc {justify-content: center !important;}
.jce {justify-content: end !important;}

.ais {align-items: start !important;}
.aic {align-items: center !important;}
.aie {align-items: end !important;}

.m0 {margin: 0;}

.bb {border-bottom: 2px solid #333;}

.indent-r {
    margin: 0 !important;
    padding: 0 15px 0 0 !important;
    float: right !important;
}

header {
    position: fixed;
    height: 50px;
    background-color: #fff;
}

body {
    background: linear-gradient(-45deg, #d3af37, #e8c97c, #5b9fc5, #d6d1c4);
	background-size: 200% 200%;
	animation: gradient 30s linear infinite;
	height: 100vh;
    padding: 0;
    margin: 0;
}

.dev_mode {
    background:#c00;
    color:#fff;
    text-align:center;
    padding:6px 12px;
}

.dev_mode p {
    margin:0;
    font-weight:bold;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 0px;
    border-radius: 0;
  }
  
  ::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0;
    border-radius: 0px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  }
  
  ::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0.3);
  }

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 100%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* START INPUT TEXT STYLES */
.text-input__group {
    position: relative;
    display: inline-block;
    padding: 15px 0 0;
    margin: 8px 0 0 0;
    width: 100%;
}
  
.text-input__field {
    font-family: inherit;
    height: 20px;
    width: calc(100% - 4px);
    border: 0;
    border-radius: 0px;
    -webkit-apperance: none;
    -webkit-border-radius: 0px;
    border-bottom: 2px solid #9b9b9b;
    outline: 0;
    font-size: 12px;
    color: black;
    padding: 7px 0 5px 4px;
    background: #dee1e2;
    transition: border-color 0.2s;
    box-sizing: content-box;
  
    &::placeholder {
        color: transparent;
    }
  
    &:placeholder-shown ~ .text-input__label {
        cursor: text;
        top: 25px;
    }
}
  
.text-input__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 12px;
    color: #9b9b9b;
    padding: 0 0 0 4px;
}
  
.text-input__field:focus {
    ~ .text-input__label {
      position: absolute;
      top: 0;
      display: block;
      transition: 0.2s;
      font-size: 12px;
      color: black;    
    }
    border-color: black;
    border-image-slice: 1;
}
  /* reset input */
  .text-input__field{
    &:required,&:invalid { box-shadow:none; }
}
/* END INPUT TEXTBOX STYLES */

/* START INPUT CHECKBOX STYLES */
.checkbox-input__field {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #9b9b9b;
    background-color: #dee1e2;
    width: 30px;
    height: 30px;
    outline: none;
    border-radius: 0;
    display: flex;
    place-content: center;
    position: relative;
    margin: 3.6px;
    padding: 0;
}

.checkbox-input__field::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-color: transparent;
    border: 0;
    transition: ease-in-out background-color 0.4s, transform 0.6s;
}

.checkbox-input__field:checked::before {
    background-color: #d3af37;
    transform: translate(-50%, -50%) scale(0.5);
}
/* END INPUT CHECKBOX STYLES */

/* START INPUT SELECT STYLES */
.select-input {
    position: relative;
    display: inline-block;
    padding: 15px 0 0;
    margin: 8px 0 0 0;
    width: 100%;
    max-width: 300px;
}

.select-input select{
    border: 0;
    box-sizing: content-box;
    padding: 7px 0 5px 4px;
    height: 20px;
    width: calc(100% - 4px);
    border-bottom: solid #9b9b9b 2px;
    background: #dee1e2;
    transition: border-color 0.2s, color 0.2s;
    color: #9b9b9b;
    font-size: 12px;
}

.select-input select:active, select:hover {
    border-color: black;
    color: black;
}

.select-input label{
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 12px;
    color: #9b9b9b;
    padding: 0 0 0 4px;
}

.select-input option {
    color: black;
}
/* END INPUT SELECT STYLES */

/* START INPUT DATE STYLES */
.select-date {
    position: relative;
    display: inline-block;
    padding: 15px 0 0;
    margin: 8px 0 0 0;
    width: auto;
    max-width: 300px;
    border-bottom: solid #9b9b9b 2px;
    height: 32px;
}

.select-date:hover{
    border-color: black;
    color: black
}

.select-date input {
    border: 0;
    background: #dee1e2;
    color: #9b9b9b;
}

.select-date input:focus{
    color: black;
}

.select-date input:only-child{
    height: 100%;
}

.select-date input:not(:only-child){
    height: 50%;
}

.select-date label{
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 12px;
    color: #9b9b9b;
    padding: 0 0 0 4px;
}
/* END INPUT DATE STYLES */

.pagination {
    display: flex;
    justify-content: center;
    text-align: center;
}

.pagination a {
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
}
  
.pagination a:hover {background-color: #B0BEC5;}

.pagination-current {
    background-color: #d3af37;
    color: white !important;
    font-weight: bold;
}

.pagination-current:hover {background-color: #d3af37 !important;}

.content-container {
    position: absolute;
    padding: 0;
    left: 50%;
    transform: translate(-50%);
    width: 800px;
    height: calc(100% - 56px);
    display: flex;
    flex-direction: column;
    background-color: whitesmoke;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    text-align: center;
    overflow: auto;
}

.button-image {
    background-color: transparent;
    border: 0;
    padding: 7px 12px;
    width: 20px;
    height: 20px;
    box-sizing: content-box;
    cursor: pointer;
}

.button-image img {
    width: 20px;
    height: 20px;
}

.edit-input-container {
    width: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.content-parent {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0;
    padding: 10px 0;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: solid #9b9b9b 5px;
}

.lock-button {
    border: none;
    cursor: pointer;
    background-color: transparent;
    max-width: 35px;
    filter: invert(30%);
}
.lock-button-disable {
    border: none;
    cursor: default;
    background-color: transparent;
    max-width: 35px;
    filter: invert(30%);
}
.lock-button:hover {
    filter: invert(0%);
    transition: ease-in-out 0.3s;
}

.delete-button-inline {
    border: none;
    background-color: transparent;
    width: auto !important;
    margin: 12px 0 !important;
    padding: 0 4px !important;
    cursor: pointer;
}

.svg-button {
    border: none;
    cursor: pointer;
    background-color: transparent;
    max-width: 45px;
    filter: invert(30%);
}
.svg-button:hover {
    filter: invert(0%);
    transition: ease-in-out 0.3s;
}

.flex-5 {flex-basis: 5%;}
.flex-10 {flex-basis: 10%;}
.flex-15 {flex-basis: 15%;}
.flex-20 {flex-basis: 20%;}
.flex-25 {flex-basis: 25%;}
.flex-30 {flex-basis: 30%;}
.flex-33 {flex-basis: 33%;}
.flex-35 {flex-basis: 35%;}
.flex-40 {flex-basis: 40%;}
.flex-45 {flex-basis: 45%;}
.flex-50 {flex-basis: 50%;}
.flex-55 {flex-basis: 55%;}
.flex-60 {flex-basis: 60%;}
.flex-66 {flex-basis: 66%;}
.flex-65 {flex-basis: 65%;}
.flex-70 {flex-basis: 70%;}
.flex-75 {flex-basis: 75%;}
.flex-80 {flex-basis: 80%;}
.flex-85 {flex-basis: 85%;}
.flex-90 {flex-basis: 90%;}
.felx-95 {flex-basis: 95%;}
.flex-100 {flex-basis: 100%;}

.content-child-form {
    display: flex;
    border-radius: 5px;
    padding: 10px;
    text-align: left;
    box-sizing: border-box;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.content-child-form .text-input__group {
    width: 49%;
}

.content-child {
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    padding: 10px;
    text-align: left;
    box-sizing: border-box;
    justify-content: center;
}

.content-child input {
    display: flex;
    font-size: 12px;
    margin: 5px 0;
}

.content-child select {
    display: flex;
    font-size: 12px;
    margin: 5px 0;
    color: #9b9b9b;
}

.content-child textarea {
    resize: none;
}

.content-child button {
    margin: 5px 0;
}

.content-child span {
    display: block;
    font-size: 12px;
    margin: 5px 0;
}

.content-child i {
    margin: auto 15px;
}
.flagsHeaderText {flex-grow: 15; width: 0;}
.flagsDropDownButton {flex-grow: 1; width: 0;}
.flagsEntryInfo {flex-grow: 1; width: 0;}
.flagsEntryContent {flex-grow: 7; width: 0;}
.flagsCreateInput {flex-grow: 15; width: 0; margin-right: 15px; height: 60px;}
.flagsCreateSubmitButton {flex-grow: 1; width: 0;}


.submitButton {flex-grow: 1; width: 0; height: auto;}
.cancelButton {flex-grow: 1; width: 0;}

.timeType {flex-grow: 2; width: 0;}
.timeUser {flex-grow: 4; width: 0;}
.timeDate {flex-grow: 3; width: 0;}
.timeStart {flex-grow: 3; width: 0;}
.timeEnd {flex-grow: 3; width: 0;}

.partNumber {flex-grow: 4; width: 0;}
.partName {flex-grow: 8; width: 0;}
.partPrice {flex-grow: 2; width: 0;}
.partQty {flex-grow: 2; width: 0;}


.flex-row-container {
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 5px;
    justify-content: center;
    align-items: end;
}

.flex-row-container a{
    width: 100%;
}

.flex-row-container button, form {
    width: 100%;
}

.flex-column-container {
    width: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 5px;
}

.button-input {
    background-color: whitesmoke;
    border-bottom: #B0BEC5 solid 2px;
}

.invoice td:nth-child(1) {text-align:right; font-family: monospace; font-weight: bold;}
.invoice td:nth-child(2) {text-align:left; font-family: monospace;}
.invoice td:nth-child(3) {text-align:left; text-overflow: ellipsis;}
.invoice td:nth-child(4),
.invoice td:nth-child(5),
.invoice td:nth-child(6) {text-align:right; font-family: monospace;}
.invoice td:nth-child(7) {text-align: center; font-weight: bold;}

.summary-table {border-collapse: collapse;}
.summary-table th {font-size: 12px; font-weight: normal; text-align: left;}
.summary-table tr {height: 28px;}
.summary-table td {font-family: monospace; text-align: right;}


.PM-planner tbody.group tr:last-child {border-bottom: solid #9b9b9b 2px}

.PM-Monthly td:nth-last-child(3), .PM-Monthly td:nth-last-child(6), .PM-Monthly td:nth-last-child(9), .PM-Monthly td:nth-last-child(12) {border-left: dotted #9b9b9b 1px;}
.PM-Bimonthly td:nth-last-child(3), .PM-Bimonthly td:nth-last-child(6) {border-left: dotted #9b9b9b 1px;}
.PM-Quarterly td:nth-last-child(2), .PM-Quarterly td:nth-last-child(4) {border-left: dotted #9b9b9b 1px;}


.search-table2 td {
    height: 18px !important;
}
.search-table2 tr {
    background-color: transparent !important;
}

.search-table {
    width: 100%;
    font-size: 12px;
    text-align: center;
    border-collapse: collapse;
}

.search-table table {
    text-align: left;
    overflow: auto;
    height: 100%;
    border: 0;
}

.search-table thead {
    border-bottom: solid #9b9b9b 2px;
}

.search-table thead p {
    font-weight: bold;
}

.search-table a {
    text-decoration: none;
    font-weight: none;
    color: #333;
    display: block;
    margin: 0 auto;
    border: none;
    background-color: transparent;
    transition: 0.2s;
}

.search-table thead a:hover {
    color: #d3af37;
}

.search-table thead input {
    min-width: 0;
    position: relative;
    display: flex;
}

.search-table thead th {
    vertical-align: bottom;
    font-size: 12px;
}

.search-table th {
    height: 30px;
}

.search-table tbody a {
    display: block;
    text-decoration: none;
    color: #2962ff;
    padding: 5px 0;
    margin: 0 10px;
}

.search-table td {
    height: 40px;
}

.search-table button {
    border: none;
    padding: 5px;
    width: fit-content !important;
    background-color: transparent;
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0 5px;
    cursor: pointer;
    height: 20px;
    align-items: center;
    font-size: 12px;
}

.button-disabled {
    color: #CFD8DC !important;
    cursor: default !important;
}

.search-table tbody span {
    display: block;
    width: auto;
    padding: 5px 0;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: bold;
    text-shadow: none;
}

.search-table-text-suffix {
    display: inline !important;
    text-transform: none !important;
    margin-left: 5px !important;
    font-size: 10px !important;
}

.search-table tbody img {
    width: 18px;
    height: 18px;
    filter: invert(30%);
}

.search-table .status-gray {
    background-color: #d4d4d4;
    color: #585858;
    border-radius: 5px;
}

.status-gray {
    background-color: #d4d4d4;
    color: #585858;
    border-radius: 5px;
    padding: 5px;
    text-decoration: none;
}

.yellow {
    color: #a68b00;
    text-decoration: none;
}

.yellowI {
    color: #a68b00 !important;
    text-decoration: none;
}

.search-table .status-yellow {
    background-color: #fff0c2;
    color: #a68b00;
    border-radius: 5px;
}

.status-yellow {
    background-color: #fff0c2;
    color: #a68b00;
    border-radius: 5px;
    padding: 5px;
    text-decoration: none;
}

.blue {
    color: #1976D2;
    text-decoration: none;
}

.blueI {
    color: #1976D2 !important;
    text-decoration: none;
}

.search-table .status-blue {
    background-color: #BBDEFB;
    color: #1976D2;
    border-radius: 5px;
}

.status-blue {
    background-color: #BBDEFB;
    color: #1976D2;
    border-radius: 5px;
    padding: 5px;
    text-decoration: none;
}

.green {
    color: #388e3c;
    text-decoration: none;
}

.greenI {
    color: #388e3c !important;
    text-decoration: none;
}

.search-table .status-green {
    background-color: #c8e6c9;
    color: #388e3c;
    border-radius: 5px;
}

.status-green {
    background-color: #c8e6c9;
    color: #388e3c;
    border-radius: 5px;
    padding: 5px;
    text-decoration: none;
}

.orange {
    color: #FFA500;
    text-decoration: none;
}

.orangeI {
    color: #FFA500 !important;
    text-decoration: none;
}

.search-table .status-orange {
    background-color: #ffeac4;
    color: #FFA500;
    border-radius: 5px;
}

.status-orange {
    background-color: #ffeac4;
    color: #FFA500;
    border-radius: 5px;
    padding: 5px;
    text-decoration: none;
}

.red {
    color: #c62828;
    text-decoration: none;
}

.redI {
    color: #c62828 !important;
    text-decoration: none;
}

.search-table .status-red {
    background-color: #ffcdd2;
    color: #c62828;
    border-radius: 5px;
}

.status-red {
    background-color: #ffcdd2;
    color: #c62828;
    border-radius: 5px;
    padding: 5px;
    text-decoration: none;
}

.search-table .amount {
    text-align: right;
}

.search-table tbody tr:nth-child(even) {
    background-color: #ebedef;
}
.search-table tbody tr:nth-child(odd) {
    background-color: #dee1e2;
}

.tab {
    display: inline-block;
    position: relative;
    height: auto;
    width: 100%;
    border-bottom: 2px solid #747474;
    background-color: #dee1e2;
}

.tab p {
    font-size: 14px;
    padding: 11.6px 20px;
    margin: 0;
}

.tab-content {
    flex-grow: 1;
    overflow: auto;
}

.pdf-viewer{
    width: 100%;
    height: 99.2%;
}

.tab span {
    display: flex;
    align-items: center;
    float: left;
    height: 40px;
    color: #747474;
    font-size: 18px;
}

.tab img {
    filter: invert(30%);
    padding: 0 10px;
    height: 30px;
}

.tab a {
    float: right;
    height: 40px;
    border: none;
    padding: 0;
    background-color: #dee1e2;
    transition: background-color 100ms ease-in;
    color: #2962ff;
    font-size: 14px;
    text-decoration: none;
}

.tab-red {
    color: #c62828 !important;
}
.tab-red :hover {
    background-color: #747474;
    color: white !important;
}

.tab a:active {
    background-color: red; /* Test with a more noticeable color */
    color: yellow; /* Test with a more noticeable text color */
}

.tab a:hover,
.tab a:active {
    background-color: #747474;
    color: white;
}

.tab a img {
    padding: 8px 16px;
}

.tab a img:hover,
.tab a:active img  {
    filter: invert(100%);
}

.quick-link-container {
    display: flex;
    flex-basis: 100%;
    align-content: start;
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
    margin: 0 10px;
    text-align: left;
}

.quick-link {
    display: flex;
    flex: 1 0 150px;
    min-width: 100px;
    margin: 5px;
    background-color: #dee1e2;
    border-radius: 5px;
    border: 2px solid #dee1e2;
    transition: box-shadow 100ms ease-in, border 100ms ease-in, background-color 100ms ease-in;
}
.quick-link:hover {
    border-color: #d3af37;
}
.quick-link a {
    display: inline-block;
    width: 100%;
    height: 40px;
    text-align: left;
    text-decoration: none;
    font-size: 15px;
}
.quick-link span {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding-left: 10px;
    color: #747474;
    font-size: 15px;
    margin: 0;
}
.quick-link img {
    padding-right: 5px;
    filter: invert(30%);
    height: 30px;
}

.top-nav {
    background-color: #333;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    height: 56px;
}
.top-nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-align: center;
    width: 660px;
    margin: 0 auto 0 auto;
    background-color: #333;
}
.top-nav li {
    display: inline-block;
}
.nav-icon-white {
    filter: invert(100%);
    height: 24px;
    width: 24px;
}
.top-nav .left-item {
    float: left;
}
.top-nav .left-item a{
    padding: 16px 16px;
    height: 24px;
    width: 24px;
    transition: background-color .15s ease-in-out;
}
.top-nav .left-item:hover a{
    background-color: #d3af37;
}
.top-nav .center-item li a{
    text-align: center;
    padding: 0;
}
.top-nav .center-item a{
    padding: 16px 16px;
    height: 24px;
    width: 24px;
    transition: background-color .15s ease-in-out;
}
.top-nav .center-item:hover a{
    background-color: #d3af37;
}
.top-nav .right-item {
    float: right;
}
.top-nav .right-item a{
    padding: 16px 16px;
    height: 24px;
    width: 24px;
    transition: background-color .15s ease-in-out;
}
.top-nav .right-item:hover a{
    background-color: #d3af37;
}
.top-nav li a {
    display: block;
    color: #f2f2f2;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
}

.login-card {
    position: absolute;
    padding: 25px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 350px;
    background-color: whitesmoke;

    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    border-radius: 5px;
}
.login-card svg{
    width: 25px;
    height: 20px;
    margin: 0 auto;
    fill: currentColor;
    overflow: hidden;
    display: block;
}
.login-img {
    width: 90%;
    display: block;
    margin: 0 auto 10px auto;
    padding: 0;
}
.button-style1 {
    cursor: pointer;
    width: 100%;
    outline: 0;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    background-color: transparent;
    border: 1px solid #d3af37;
    padding: 5px 10px;
    margin: 0;
    height: 34px;
    font-size: 14px;
    border-radius: 0;
    border-width: 2px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    color: #d3af37;
}
.button-style1:hover {
    color: #fff;
    background-color: #d3af37;
    border-color: #d3af37;
}
.button-style1:disabled {
    cursor: not-allowed;
    width: 100%;
    outline: 0;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    background-color: transparent;
    border: 1px solid #CFD8DC;
    padding: 5px 10px;
    height: 34px;
    font-size: 14px;
    border-radius: 0;
    border-width: 2px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    color: #CFD8DC;
}
.button-style2 {
    cursor: pointer;
    width: 100%;
    outline: 0;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 5px 10px;
    margin: 0;
    height: 34px;
    font-size: 14px;
    border-radius: 0;
    border-width: 2px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    color: #747474;
    border-color: #dee1e2;
    background-color: #dee1e2;
}
.button-style2:hover {
    color: #fff;
    border-color: #d3af37;
    background-color: #d3af37;
}

/* pulsating dot start*/
@keyframes opacity-animation {
    0% {
        opacity: 0
    }
}

@keyframes pulse-animation {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: .8
    }
    70% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3)
    }
    to {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0
    }
}

.pulse:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    opacity: .5;
    transform: translate(-50%,-50%) scale(3);
    animation: pulse-animation 3s infinite;
}
.pulse.red:before {
background: #ff403b;
}

.pulse.yellow:before {
background: #ffdc44;
}

.pulse.green:before {
background: #3bff3b;
}
  
.pulse {
    position: relative;
    display: inline-block;
    vertical-align: 1px;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    color: transparent;
    border-radius: 100%;
    flex: 0 0 auto;
    animation: opacity-animation 1s linear;
}
.pulse.red {
    background: #e60600;
}
.pulse.yellow {
    background: #f3c600;
}
.pulse.green {
    background: #00e600;
}
/* pulsating dot end*/