/*
Template Name: Skote - Admin & Dashboard Template
Author: Themesbrand
Version: 4.0.0.
Website: https://themesbrand.com/
Contact: themesbrand@gmail.com
File: Main Css File
*/

.summary{
    padding: 10px !important;
    padding-top: 0px !important;
}

.pagination{
    padding: 10px !important;
    padding-top: 0px !important;
}

.ewb-container{
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 0px 1px !important;
    margin-bottom: 5px;
    border-radius:10px;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    -ms-border-radius:10px;
}

.ewb-container:hover{
    box-shadow: rgba(0, 0, 0, 0.34) 0px 3px 8px !important;
}

/* PRELOADER CSS */
.page-loader{
    position: fixed;
	width: 100%;
	height: 100vh;
	/* //position: absolute; */
	background: #272727;
	z-index: 1005;
	.txt{
		color: #666;
		text-align: center;
		top: 40%;
		position: relative;
		text-transform: uppercase;
		letter-spacing: 0.3rem;
		font-weight: bold;
		line-height: 1.5;
	}
}

/* SPINNER ANIMATION */
.spinner {
	position: relative;
	top: 35%;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: #fff;

    border-radius: 100%;  
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}


