/* @import url('//fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap'); */
:root{
 --primary-color: #009688;
  --light-primary-color: #ffaabe;
  --white-color: #FFFFFF;
  --black-color: #000000;
  --red-color: rgb(255 0 0);
  --green-color: #05ff00;
  --violet-color: #da00ff;
  --blue-color: #2196f3;
  --darkgrey-color: rgba(0,0,0,0.3);
  --common-border-radius: 1px;
  
  --primary-back-color: #009688;
  --primary-btn-color: #2196f3;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,Helvetica,Segoe UI,Arial,Roboto,PingFang SC,Hiragino Sans GB,Microsoft Yahei,sans-serif;
}

.main-view{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    background:rgba(0,0,0,0.07);
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

body {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #fafafa;
}
body:focus {
    outline: none !important;
}

.contents-view{
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: var(--white-color);
    overflow-y: scroll;

    -ms-overflow-style: none !important;  /* IE and Edge */
    scrollbar-width: none !important;  /* Firefox */
}

.contents-view::-webkit-scrollbar{
   display: none !important;
}

.contents-view .top-bar{
    position: relative;
    min-height: 56px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    background: var(--primary-color);
    box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
    transition: .2s cubic-bezier(.4,0,.2,1);
}
.contents-view .top-bar img{
    height: 25px;
    width: 25px;
    cursor: pointer;
}
.contents-view .top-bar div{
    display: flex;
    align-items: center;
    justify-content: center;
}
.contents-view .top-bar div p{
    color: var(--white-color);
    font-size: 20px;
    margin-left: 1.6em;
}
.contents-view .top-bar div img{
    height: 20px !important;
    width: 20px !important;
}

.primary-btn,.secondary-btn{
    width: 100%;
    padding: 8px 14px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: var(--common-border-radius);
    background: var(--white-color) !important;
}
.primary-btn{
    color: var(--white-color) !important;
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
}
.auto-width{
    padding: 8px 18px !important;
    width: auto !important;
}
.white-color-back{
    color: var(--black-color) !important;
    background: var(--white-color) !important;
}
.primary-color-back{
    /* background: #3F51B5 !important; */
    color: var(--white-color);
    background: var(--primary-color) !important;
}
.red-back{
    background: var(--red-color) !important;
}
.violet-back{
    background: var(--violet-color) !important;
}
.green-back{
    background: var(--green-color) !important;
}
.blue-back{
    background: var(--blue-color) !important;
}
.darkgrey-back{
    background: var(--darkgrey-color) !important;
}
.color-green{
    color: var(--green-color) !important; 
}
.color-red{
    color: var(--red-color) !important;
}
.color-violet{
    color: var(--violet-color) !important;
}
.color-blue{
    color: var(--blue-color) !important;
}
.color-orange{
  color: #F5B041 !important;
}
.primary-btn-color-back{
    background: var(--primary-btn-color) !important;
}
.green-violet-back{
    background: linear-gradient(-60deg, var(--violet-color) 50%, var(--green-color) 50%) !important;
}
.red-violet-back{
    background: linear-gradient(-60deg, var(--violet-color) 50%, var(--red-color) 50%) !important;
}
.lightblack-color-back{
    color: var(--white-color) !important;
    background: rgba(0,0,0,0.6) !important;
}

.margin-left-5px{
    margin-left: 5px !important;
}
.text-full-width{
    width: 100%;
    text-align: center;
}

.primary-btn:active{
    transform: scale(0.9);
    transition: 0.1s;
}

/* pagination view css */
.pagination-view{
    height: 50px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 15px;
    border-bottom: 1px solid #a6a6a6;
}
.pagination-view p{
    font-size: 14px;
    margin-right: 40px;
    color: rgba(0,0,0,.54) !important;
}
.pagination-view i{
    color: rgba(0,0,0,0.5);
}
.pagination-view button{
    height: 40px !important;
    width: 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}

/* table data css */
#table-data{
  border-collapse: collapse;
  width: 100%;
  padding: 10px;
  border-top: 1px solid rgba(0,0,0,0.05); 
}
#table-data td{
  padding: 15px 8px;
  text-align: center;
  font-size: 12px;
  border-bottom: 1px solid #e0e0e0;
}
#table-data tr:first-child td{
  font-size: 13px !important;
  color: rgba(0,0,0,.54);
}
/* #table-data tr:nth-child(even){
  background-color: rgba(0,0,0,0.03);
} */


/*hide input arrows*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
  

/* hide views css */
.hide_view{
    display: none !important;
}


@media (max-width: 550px) {
  .contents-view{
    width: 100% !important;
  }
}