﻿@charset "UTF-8";
/*
* Base Common Style
*/
.table td,
.table th {
  vertical-align: middle;
}
.table th {
  white-space: nowrap;
}
a.card-header {
  cursor: pointer;
}
.input-group-prepend a.btn,
.input-group-append a.btn {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
@media (min-width: 991.98px) {
  .app-header .navbar-brand {
    width:200px;
  }
}
.sidebar-minimized .sidebar #sidebarProfile {
  display:none;
}

/* load screen style */
.load-screen {
  background-color: #000;
  position: fixed;
  top:0;
  right:0;
  bottom:0;
  left:0;
  z-index:9999;
}
.load-screen .load-container{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

/* Bug Aboidance */
/* iOS 100vh */
.app-body .sidebar {
  padding-bottom: calc(env(safe-area-inset-bottom));
  padding-bottom: calc(constant(safe-area-inset-bottom));
}

/* 
* Util Style
*/
/* Text and Font */
@media screen and (max-width:1199px){
  .font-lg-reset {
    font-size: 1rem!important;
  }
}
@media screen and (max-width:991px){
  .font-md-reset {
    font-size: 1rem!important;
  }
}
@media screen and (max-width:767px){
  .font-sm-reset {
    font-size: 1rem!important;
  }
}
.text-shadow {
  text-shadow: 0 0 4px black;
}
/* position */
.position-absolute-xy-center {
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
/* Blink */
.blink{
  -webkit-animation:blink 1.5s ease-in-out infinite alternate;
  -moz-animation:blink 1.5s ease-in-out infinite alternate;
  animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
  0% {opacity:0;}
  80% {opacity:1;}
  100% {opacity:1;}
}
@-moz-keyframes blink{
  0% {opacity:0;}
  80% {opacity:1;}
  100% {opacity:1;}
}
@keyframes blink{
  0% {opacity:0;}
  80% {opacity:1;}
  100% {opacity:1;}
}

/*
* Top Page Style
*/
/* header */
.top-header {
  position: fixed;
  z-index: 1020;
  width: 100%;
  height: 60px;
  top: 0;
}
/* body */
.top-body {
  margin: 75px 0;
}
/* footer */
ul.nav-footer li {
  list-style-type:none;
  padding: 5px;
}
/* link anchor */
a.anchor {
  display: block;
  padding-top: 58px;
  margin-top: -58px;
}

/*
* form common style
*/
.form-control-lg,
.input-group-lg > .form-control,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 15px;
  font-size: 1rem;
  height: calc(1.5em + 30px + 2px);
}
.form-control-xl,
.input-group-xl > .form-control,
.input-group-xl > .input-group-prepend > .input-group-text,
.input-group-xl > .input-group-append > .input-group-text,
.input-group-xl > .input-group-prepend > .btn,
.input-group-xl > .input-group-append > .btn {
  padding: 25px 15px;
  font-size: 1.25rem;
  height: calc(1.5em + 50px + 2px);
}
/* button style */
.btn-xl {
  /* font-size: 0.875rem; */
  padding: 15px;
}

/*
* awesome-checkbox custom style
*/
.abc-checkbox.abc-checkbox-large {
  padding-left: 33px;
  margin-bottom: 15px;
}
.abc-checkbox.abc-checkbox-large input[type="checkbox"],
.abc-checkbox.abc-checkbox-large input[type="radio"] {
  margin-left: -28px;
}
.abc-checkbox.abc-checkbox-large label::before {
  width: 25px;
  height: 25px;
}
.abc-checkbox.abc-checkbox-large input[type="checkbox"]:checked + label::after {
  font-size: 1.125rem;
  margin-left: -19px;
}
.abc-checkbox.abc-checkbox-large label {
  font-size: 1.125rem;
  padding-left: 10px;
}

/*
* color common style
*/
/*border style*/
.form-control,
.input-group-text {
  border-color: #ccc;
}

/*
* hover slide style
*/
.hover-slide-box{
  width:auto;
  display:inline-block;
  margin-left:20px;
  margin-right:20px;
  position:relative;
  padding: 0 20px;
}
.hover-slide-right {
  position: absolute;
  right: -20px;
  top: 7px;
  padding-right: 10px;
  transition-duration: 0.5s;
}
.hover-slide-left {
  position: absolute;
  left: -20px;
  top: 7px;
  padding-left: 10px;
  transition-duration: 0.5s;
}
.hover-slide-right:hover {
  right:-20px;
  padding-right:0;
  padding-left: 10px;
}
.hover-slide-left:hover {
  left:-20px;
  padding-right:10px;
  padding-left: 0;
}