@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. assets/fonts
2. Body and some general stuff
3. Header
	3.1 Top Bar
	3.2 Header Content
	3.3 Logo
	3.4 Main Nav
	3.5 Hamburger
4. Menu
5. Home
6. Regular
7. Footer

/*********************************
2. Body and some general stuff
*********************************/

* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 15px;
}

div {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style: none;
  margin-bottom: 0px;
}

button:focus {
  outline: none;
}

figure {
  position: relative;
}

a,
a:hover,
a:visited,
a:active,
a:link {
  outline: none;
  text-decoration: none;
}

.h6 {
  font-size: 1rem;
  font-weight: 500;
}

.btn-circle {
  border-radius: 100px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-circle.btn-circle-sm {
  width: 35px;
  height: 35px;
  font-size: 1.1rem;
}

.btn-rounded {
  border-radius: 3px;
  background: none;
  color: #666 !important;
  border: 1px solid #666;
  padding: 0.375rem 0.75rem;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 1rem;
  line-height: 1.5;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  cursor: pointer;
}

.btn-rounded.btn-danger:hover {
  background: #ff5b5b;
  color: white !important;
  border-color: #ff5b5b;
}

.btn-rounded.active,
.btn-rounded:hover {
  background: #1875f0;
  color: white !important;
  border-color: #1875f0;
}

.form-control:focus {
  border: 1px solid #92979b;
  box-shadow: none;
}

/*********************************
3.4 Main Nav
*********************************/

@media (min-width: 991px) {
  .navbar {
    padding: 1.3rem 0;
  }
}

@media (max-width: 662px) {
  .change-dashboard i {
    font-size: 25px;
  }

  .change-dashboard b {
    display: none;
  }
}

nav {
  padding: 0.6rem 0;
}

.body-content-v1 {
  padding-top: 1.8rem;
  background: #f8f8f8;
  display: relative;
  flex-grow: 1;
}

.body-content-v1 .page-title {
  color: #333;
  font-weight: 600;
}

.body-content-v1 .section-title {
  color: #555;
  font-weight: 600;
  font-size: 1.3rem;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.swal2-cancel {
  background-color: #fff0 !important;
  color: #333 !important;
}

.swal2-button {
  border-radius: 5px;
  background-color: #1387fa;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  background-color: #1387fa;
  font-size: 16px;
  border: none;
}

.btn.focus,
.btn:focus {
  box-shadow: none !important;
}
