/* Color Variable */
:root {
  --main-color: #0097a7;
  --secondary-color: #699b99;
}

/* Component Style */
a.link:hover {
  color: var(--main-color) !important;
  cursor: pointer;
}

p{
    margin-bottom: 0px;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  font-size: 18px;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.input-with-icon input {
  padding-left: 35px;
}


/* Login Page */
.login-page .block{
  width: 96%;
  max-width: 400px;
  background: white;
  padding: 30px;
  margin: 100px auto;
  border-radius: 5px;
  border: 1px solid gainsboro;
  box-shadow: 0px 0px 15px #eee;
}

.login-page .block.wide{
    max-width: 450px;
}

.login-page .block .logo {
  max-width: 300px;
  width: 90%;
  display: block;
  margin: 10px auto 50px auto;
}

.login-page .block .input-with-icon {
  margin-top: 15px;
}

.login-page .block .btn.signin{
  background: var(--main-color);
  color: white;
  margin: 30px auto;
  display: block;
  width: 100%;
}

.error-message span{
  background: #ffd4dc;
  padding: 3px 15px;
  color: black;
  display: block;
}

.success-message span{
    padding: 3px 15px;
    display: block;
}

/* Home Page Style */
body.full-page{
  overflow: hidden;
}

/* Navbar Style */
header{
  box-shadow: 0px 5px 8px #ccc;
  z-index: 10;
  position: fixed;
  width: 100%;
  top: 0px;
  background: white;
  height: 60px;
}
header .logo {
  height: 35px;
  width: auto;
}
header nav .log-out{
  background: var(--main-color);
  color: white;
  border:none;
  padding-right: 30px
}
header nav #frmLogout{
  position: relative;
}

header nav .log-out:hover{
  background: #01a8ba;
  color: white;
}
header nav #frmLogout i{
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-45%);
  color: white;
}

header + .full-container {
  width: 100%;
  margin-top: 60px;
  height: calc( 100vh - 60px );
  overflow: hidden;
}

/* .full-container::after {
  position: absolute;
  width: 100%;
  height: 25px;
  bottom: 0px;
  background: white;
  content: " ";
  display: block;
  z-index: 10;
} */

iframe{
  width: 100%;
  height: 100%;
}


.header-follow{
  margin-top: 100px;
  height: unset;
}

/* Table Style */
th.checkbox::after{
  display: none!important;
}
th.checkbox::before{
  display: none!important;
}
th.actions::after{
  display: none!important;
}
th.actions::before{
  display: none!important;
}
th.actions, td.actions{
  width: 110px;
}
.table tr td{
  padding: 0.25rem 0.75rem;
}
.actions .btn{
  padding: 0.125rem 0.75rem;
  color: white!important;
  min-width: 45px;
}
.container-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup{
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  z-index: 11;
  transform: translateY(-100%);
  transition: all .5s;
}

.popup-container{
  max-width: 700px;
  width: 100%;
  background: white;
  margin: 100px auto;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0px 0px 30px #ccc;
}

.popup-header{
  margin-bottom: 20px;
}

.popup-actions{
  text-align: right;
}

.popup.open{
  transform: translateY(0px);
  transition: all .5s;
}

.text-prime {
    --tw-text-opacity: 1;
    color: rgba(108,177,188,var(--tw-text-opacity));
}
.py-8 {
    padding-bottom: 2rem;
    padding-top: 2rem;
}
.border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgba(229,231,235,var(--tw-border-opacity));
}
.text-center {
    text-align: center;
}
.border-t {
    border-top: 1px rgba(229,231,235) solid;
}

.text-prime p {
    font-weight: 300;
}