/* @@@@@@@@@@@@ plugin title @@@@@@@@@@ */
@media only screen and (max-width: 991.98px)
{
    .sidebar ul {
        top: 352px !important;
    }
    .page-wrapper{
        margin-top: 0px !important;
    }
}
.page-wrapper{
    margin-top: -190px;
}
.custom_select{
    width: 200px;
    padding: 2px;
    padding-left: 10px;
    margin-right: 30px;
    height: 30px;
    border-radius: 5px;
}

.custom_input{
    font-size: 14px !important;
    height: 26px !important;
    margin-right: 30px!important;
    width: 80px !important;
    height: 45px !important;
    border-radius: 5px !important;
}

.custom_label{
    padding-top: 9px!important;
    font-weight: 600!important;
}

input[type="submit"]{
    height: 45px !important;    
}

.tab_link{
    cursor:pointer;
}

.content{
    display:none;
}

.active_div{
    display:block;
}

.search-box,.close-icon,.search-wrapper {
	position: relative!important;

}
.search-wrapper {
	width: 100%!important;
	margin: auto!important;
}
.search-box {
	width: 80%!important;
	border: 1px solid #ccc!important;
    outline: 0!important;
    border-radius: 5px!important;
}
.search-box:focus {
	box-shadow: 0 0 15px 5px #b0e0ee!important;
	border: 2px solid #bebede!important;
}
.close-icon {
	border:1px solid transparent;
	background-color: transparent;
	display: inline-block;
	vertical-align: middle;
    outline: 0;
    cursor: pointer;
}
.close-icon:after {
	content: "X";
	display: block;
	width: 15px;
	height: 15px;
	position: absolute;
	background-color: #FA9595;
	z-index:1;
	right: 24px;
	top: 1px;
	bottom: 0;
	margin: auto;

	border-radius: 50%;
	text-align: center;
	color: white;
	font-weight: normal;
	font-size: 12px;
	box-shadow: 0 0 2px #E50F0F;
	cursor: pointer;
}
.search-box:not(:valid) ~ .close-icon {
	display: none;
}

.option-list {
    background-color: #fff;
    Color: #0c6aa2;
    border: 1px solid rgba(0, 0, 0, 0.15);
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.17);
    -webkit-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.17);
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.17);
    font-size: 12px;
    left: 0;
    list-style: none;
    margin: 2px 0 0;
    min-width: 260px;
    max-height: 220px;
    overflow-y: auto;
    padding: 5px 0;
    position: absolute;
    top: 100%;
    z-index: 100;
    display: none;
    width:80%;
}
.option-list Li {
    clear: both;
    color: #0c6aa2;
    display: block;
    font-weight: 400;
    line-height: 1.42857;
    padding: 3px 20px;
    white-space: nowrap;
    text-decoration: none;
    cursor:pointer;
}
.option-list Li:hover {
    background: #4285F4;
    color: #fff;
}
#client_info_div{
    display:none;
}
#account_div{
    display:none;
}
.info_title{
    font-weight: 600;
    font-size: 16px;
}
.info_content{
    font-weight:400;
    font-size: 14px;
}
.green_title{
    color:#0c020e !important;
}
#memo_info_div{
    display:none;
}
.dataTables_filter{
    text-align:center !important;
}
.dataTables_wrapper .dataTables_length select{
    width:50px !important;
}

button[type='submit']{
    min-width: 170px;
}
/* @@@@@@@@@@ plugin title end @@@@@@@@ */


/* @@@@@@@@ alert message @@@@@@ */
.clients_container .my-alert {
    font-size: 1rem;
    display: inline-block;
    background: red;
    padding: 10px;
    border-radius: 21px 0px;
    color: white;
    position: fixed;
    right: -500px;
    transition: .5s ease-in-out;
    bottom: 10px;
}

/* @@@@@@@@ preloader @@@@@@ */
#preloader {
  position: fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:#FFF;
  z-index:99999; 
}
#status {
  width:200px;
  height:200px;
  position:absolute;
  left:50%; 
  top:50%; 
  background-image:url("../images/Preloader.gif");
  z-index:9999; 
  background-repeat:no-repeat;
  background-position:center;
  margin:-100px 0 0 -100px; 
}

/* loading bar */
.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
}

.loading-bar {
  display: inline-block;
  width: 10px;
  height: 33px;
  border-radius: 4px;
  animation: loading 1s ease-in-out infinite;
}

.loading-bar:nth-child(1) {
  background-color: #3498db;
  animation-delay: 0;
}

.loading-bar:nth-child(2) {
  background-color: #c0392b;
  animation-delay: 0.09s;
}

.loading-bar:nth-child(3) {
  background-color: #f1c40f;
  animation-delay: .18s;
}

.loading-bar:nth-child(4) {
  background-color: #27ae60;
  animation-delay: .27s;
}

@keyframes loading {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1, 2.2);
  }
  40% {
    transform: scale(1);
  }
}