.mainHeader.header {
  background-color: #fff;
}
.mainHeader.header .navbar-brand {
  display: inline-flex;
  background-color: #fff;
  border-radius: 5px;
  padding: 0.5rem 0px;
}
.mainHeader.header .navbar-brand img {
  width: auto;
  margin-right: 5px;
  height: 30px;
}
.mainHeader.header .header-categroy {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .mainHeader.header .header-categroy {
    display: none;
  }
}
.mainHeader.header #navbarSupportedContent {
  display: flex;
  flex-basis: auto;
}
.mainHeader.header .navbar-toggler {
  display: none;
}
@media only screen and (max-width: 1280px) {
  .mainHeader.header .navbar-toggler#left-meun-toggler {
    display: inline-flex;
    margin-right: 10px;
  }
}

.LeftMenu, .mainContent {
  height: calc(100vh - 66px);
  flex: 1 1 auto;
}

.LeftMenu {
  width: 240px;
  background-color: #2c832f;
  background: linear-gradient(180deg, #2c832f 0%, #368f3a 100%);
  position: absolute;
  transition: left 1s;
  z-index: 10;
}
@media only screen and (max-width: 1280px) {
  .LeftMenu {
    position: absolute;
    left: -100%;
  }
}
.LeftMenu.is-active {
  left: 0;
}
.LeftMenu .container {
  padding: 25px 0px;
}
.LeftMenu .container ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.LeftMenu .container ul li {
  padding-left: 25px;
  padding-bottom: 15px;
}
.LeftMenu .container ul li a {
  width: 100%;
  color: #fff;
  flex-wrap: inherit;
  align-items: center;
}
.LeftMenu .container ul li a img {
  max-width: 30px;
  margin-right: 10px;
}

.mainContent {
  padding: 20px 0px 20px 260px;
  background-color: rgba(246, 246, 247, 0.5);
  overflow: auto;
}
@media only screen and (max-width: 1280px) {
  .mainContent {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.login .school-image,
.login .categories-images {
  margin-bottom: 15px;
}
.login .school-name,
.login .categories-name {
  margin-bottom: 25px;
}
.login .school-image {
  width: 90px;
}
.login .school-name {
  width: 50%;
}
.login .categories-images {
  width: 135px;
  padding: 15px;
}
.login .categories-name {
  width: 50%;
}
.login .login-box {
  max-width: 550px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.login .login-box .card {
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.8);
}
.login .login-box .btn-login {
  max-width: 120px;
}

.home .openMessage {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .home .openMessage {
    width: calc(100% - 50px);
  }
}
.home .openMessage .homeQuote {
  position: absolute;
  top: 0px;
  width: 50px;
  height: 50px;
}
@media only screen and (max-width: 768px) {
  .home .openMessage .homeQuote {
    width: 20px;
    height: 20px;
  }
}
.home .openMessage .homeQuote.openQuote {
  left: -60px;
}
@media only screen and (max-width: 768px) {
  .home .openMessage .homeQuote.openQuote {
    left: -15px;
  }
}
.home .openMessage .homeQuote.closeQuote {
  right: -60px;
}
@media only screen and (max-width: 768px) {
  .home .openMessage .homeQuote.closeQuote {
    right: -15px;
  }
}
@media only screen and (max-width: 768px) {
  .home .home-category-block {
    width: 90%;
    margin: auto;
  }
}
.home .home-category-block .home-category {
  display: block;
}
.home .home-category-block .home-category .home-category-container {
  display: flex;
  height: 200px;
  width: 200px;
  padding: 15px;
  margin: 35px auto;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .home .home-category-block .home-category .home-category-container {
    width: 140px;
    height: 140px;
    padding: 5px;
    margin: 15px auto;
  }
}
.home .home-category-block .home-category .home-category-image {
  display: block;
  padding: 15px;
}
.home .home-category-block .home-category .home-category-image img {
  width: auto;
  height: 80px;
}
@media only screen and (max-width: 768px) {
  .home .home-category-block .home-category .home-category-image img {
    height: 40px;
  }
}

main > .container {
  margin: 0px auto;
}
.container {
  max-width: none;
}
@media only screen and (max-width: 968px) {
  .container {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.is-hidden {
  display: none !important;
}

.d-mobile {
  display: none;
}
@media only screen and (max-width: 968px) {
  .d-mobile {
    display: block;
  }
}

.ds-border {
  border-radius: 5px;
  border: 1px solid #e3e3e3;
}
.ds-border.br-25 {
  border-radius: 25px;
}

.btn_base {
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
  max-width: 255px;
  width: 100%;
}

.d-none {
  display: none;
}

.hidden {
  opacity: 0;
  width: 0px;
  height: 0px;
  overflow: hidden;
  padding: 0px;
  margin: 0px;
  position: absolute;
}

.d-flex {
  display: flex;
}
.d-flex.col {
  flex-direction: column !important;
}
.d-flex.col-reverse {
  flex-direction: column-reverse !important;
}
.d-flex.row {
  flex-direction: row !important;
}
.d-flex.row-reverse {
  flex-direction: row-reverse !important;
}
.d-flex .flex-item {
  flex: 1;
}
.d-flex .flex-item.c-100 {
  flex: 1 0 100%;
}
.d-flex .flex-item.c-70 {
  flex: 1 0 60%;
}
.d-flex .flex-item.c-60 {
  flex: 1 0 60%;
}
.d-flex .flex-item.c-50 {
  flex: 1 0 50%;
}
.d-flex .flex-item.c-40 {
  flex: 1 0 40%;
}
.d-flex .flex-item.c-30 {
  flex: 1 0 20%;
}
.d-flex .flex-item.c-20 {
  flex: 1 0 20%;
}
.d-flex .flex-item.c-25 {
  flex: 1 0 25%;
}
.d-flex .flex-item.c-30 {
  flex: 1 0 30%;
}
.d-flex .flex-item.c-70 {
  flex: 1 0 70%;
}
.d-flex .flex-item.c-75 {
  flex: 1 0 75%;
}
.d-flex .flex-item.c-80 {
  flex: 1 0 80%;
}

.center {
  vertical-align: middle;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.left {
  text-align: left;
  align-items: flex-start;
  justify-content: left;
}

.right {
  text-align: right;
  align-items: flex-end;
  justify-content: right;
}

.mpr {
  margin-right: 10px;
}

.more-mpr {
  margin-right: 20px;
}

.mpb {
  margin-bottom: 10px;
}

.more-mb {
  margin-bottom: 20px;
}

.mm-mpb {
  margin-bottom: 40px;
}

@media only screen and (max-width: 968px) {
  .no-p-mobile {
    padding: 0px;
  }
}

@media only screen and (max-width: 968px) {
  .no-mp-mobile {
    padding: 0px;
    margin: 0px;
  }
}

.no-mp {
  padding: 0px;
  margin: 0px;
}

.d-if {
  display: inline-flex;
}

.ts-0 {
  font-size: 36px !important;
}

.ts-1 {
  font-size: 28px !important;
}
@media only screen and (max-width: 768px) {
  .ts-1 {
    font-size: 18px !important;
  }
}

.ts-14 {
  font-size: 24px !important;
}

.ts-15 {
  font-size: 21px !important;
}
@media only screen and (max-width: 768px) {
  .ts-15 {
    font-size: 18px !important;
  }
}

.ts-2 {
  font-size: 18px !important;
}
@media only screen and (max-width: 768px) {
  .ts-2 {
    font-size: 14px !important;
  }
}

.ts-3 {
  font-size: 14px !important;
}

.ts-4 {
  font-size: 12px !important;
}

.fs-normal {
  font-weight: 300;
}

.fs-bold {
  font-weight: 400;
}

.f-strong-bold {
  font-weight: 400;
}

.f-orange, .f-orange a {
  color: #FFA028 !important;
}

.f-blue, .f-blue a {
  color: #1E3796 !important;
}

.f-normal-blue, .f-normal-blue a {
  color: #3399FF !important;
}

.f-normal-green, .f-normal-green a {
  color: #37B42D !important;
}

.f-normal-red, .f-normal-red a {
  color: #FF5C5C !important;
}

.f-white, .f-white a {
  color: #fff !important;
}

.f-gray, .f-gray a {
  color: rgb(166, 166, 166) !important;
}

.f-green, .f-green a {
  color: #37B42D !important;
}

.f-red, .f-red a {
  color: #F00 !important;
}

.f-black, .f-black a {
  color: #000 !important;
}

.f-gray-1, .f-gray-1 a {
  color: #333 !important;
}

.f-gray-2, .f-gray-2 a {
  color: #666 !important;
}

.f-gray-3, .f-gray-3 a {
  color: #999 !important;
}

.f-gray-4, .f-gray-4 a {
  color: #AAA !important;
}

.text-under {
  text-decoration: underline;
}

.blockLine {
  width: 100%;
  height: 40px;
  margin: 45px auto;
  background-size: auto;
  background-repeat: repeat-x;
}
.blockLine.removeTop {
  margin-top: 0px;
}

.ios-button {
  margin: auto;
  border-radius: 5px;
}
.ios-button input.mobileToggle {
  opacity: 0;
  position: absolute;
}
.ios-button input.mobileToggle + label {
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.4s ease;
  height: 30px;
  width: 50px;
  border: 1px solid #e4e4e4;
  border-radius: 60px;
  background-color: #e3e3e3;
}
.ios-button input.mobileToggle + label:before {
  content: "";
  position: absolute;
  display: block;
  transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
  height: 30px;
  width: 51px;
  top: 0;
  left: 0;
  border-radius: 30px;
}
.ios-button input.mobileToggle + label:after {
  content: "";
  position: absolute;
  display: block;
  box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 0px 0 hsla(0, 0%, 0%, 0.04), 0 4px 9px hsla(0, 0%, 0%, 0.13), 0 3px 3px hsla(0, 0%, 0%, 0.05);
  transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
  background-color: #fff;
  height: 28px;
  width: 28px;
  top: 1px;
  left: 0px;
  border-radius: 60px;
}
.ios-button input.mobileToggle:checked + label:before {
  background: #FFA028;
  transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
}
.ios-button input.mobileToggle:checked + label:after {
  left: 21px;
}

.uploading {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 999;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.uploading .uploading-text-container {
  width: auto;
}
.uploading .uploading-text-container .uploading-text {
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 10px;
}

.ico {
  width: 15px;
}

.ico-delete {
  cursor: pointer;
  position: relative;
  display: inline-block;
  background-color: #FF5C5C;
  width: 18px;
  height: 18px;
  border-radius: 2px;
}
.ico-delete.cycle {
  border-radius: 50%;
}
.ico-delete:before, .ico-delete:after {
  content: "";
  position: absolute;
  display: block;
  top: calc(50% - 1px);
  left: 2px;
  width: 14px;
  height: 2px;
  background-color: #fff;
}
.ico-delete:before {
  transform: rotate(45deg);
}
.ico-delete:after {
  transform: rotate(135deg);
}

.ico-add {
  cursor: pointer;
  position: relative;
  display: inline-block;
  background-color: #FFA028;
  width: 18px;
  height: 18px;
}
.ico-add.cycle {
  border-radius: 50%;
}
.ico-add:before, .ico-add:after {
  content: "";
  position: absolute;
  display: block;
  top: calc(50% - 1px);
  left: 2px;
  width: 14px;
  height: 2px;
  background-color: #fff;
}
.ico-add:before {
  transform: rotate(90deg);
}

.uploading {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 999;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.uploading.is-active {
  display: flex;
}
.uploading .uploading-text-container {
  width: auto;
}
.uploading .uploading-text-container .uploading-image {
  width: 90px;
}
.uploading .uploading-text-container .uploading-text {
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  border-radius: 10px;
}

.numFormat_1 {
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  font-size: 0.5rem;
  vertical-align: middle;
}
.dropdown-menu {
  left: auto;
  right: 0;
}

.navbar-nav .dropdown-menu {
  position: absolute;
  left: auto;
  right: 0;
}

.quiz_block {
  display: flex;
  width: 100%;
  margin-top: 15px;
}
@media only screen and (max-width: 968px) {
  .quiz_block {
    margin-top: 0px;
  }
}
.quiz_block .quiz_question_block, .quiz_block .quiz_controller {
  background-color: #fff;
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .quiz_block .quiz_question_block, .quiz_block .quiz_controller {
    border-radius: 5px;
    padding: 10px;
  }
}
.quiz_block .quiz_question_block {
  padding: 15px 0px;
  flex: 1 0 calc(75% - 15px);
  margin: 15px;
}
@media only screen and (max-width: 968px) {
  .quiz_block .quiz_question_block {
    margin: 0 15px;
  }
}
.quiz_block .quiz_question_block .d-flex {
  align-items: center;
}
.quiz_block .quiz_question_block .addFav_block {
  text-align: right;
}
.quiz_block .quiz_question_block .addFav_block .addFav {
  margin-left: auto;
  width: 25px;
}
.quiz_block .qq_solution {
  display: none;
}
.quiz_block .qq_solution.is-active {
  display: block;
}
.quiz_block .qq_submit_block {
  padding-top: 80px;
  padding-bottom: 20px;
}
.quiz_block .quiz_controller {
  flex: 1 0 25%;
  transition: all 2s linear;
}
@media only screen and (max-width: 768px) {
  .quiz_block .quiz_controller {
    position: fixed;
    top: 10px;
    right: 10px;
    border: 1px solid #e3e3e3;
  }
}
.quiz_block .quiz_controller .quiz_Close {
  text-align: right;
}
.quiz_block .quiz_controller .prevItem {
  text-align: left;
}
.quiz_block .quiz_controller .nextItem {
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .quiz_block .quiz_controller.is-active .quiz-detail-mobile {
    display: none;
  }
  .quiz_block .quiz_controller.is-active .quiz-detail-web {
    display: block;
  }
}
.quiz_block .quiz_controller .quiz_listingTitle {
  text-align: right;
}
.quiz_block .quiz_controller .quiz_listingTitle {
  padding: 10px 10px 0px;
}
.quiz_block .quiz_controller .quiz_timer {
  color: #37B42D;
}
.quiz_block .quiz_controller .quiz_timer.halfTime {
  color: #FFA028;
}
.quiz_block .quiz_controller .quiz_timer.nearEnd {
  color: #FF5C5C;
}
.quiz_block .quiz_controller .quiz_listingBlock {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  padding: 10px;
  max-height: 300px;
  overflow: auto;
}
.quiz_block .quiz_controller .quiz_listingBlock .quiz_listingNum {
  cursor: pointer;
  border-radius: 5px;
  flex: 1 0 calc(25% - 10px);
  max-width: calc(25% - 10px);
  margin: 5px;
  padding: 5px 0;
  border: 1px solid #FFA028;
  background-color: #fff;
}
.quiz_block .quiz_controller .quiz_listingBlock .quiz_listingNum.answeredQues {
  color: #fff;
  background-color: #37B42D;
}
.quiz_block .quiz_controller .quiz_listingSubmit {
  width: 100%;
  text-align: center;
  padding: 10px;
}
.quiz_block .quiz-detail-mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .quiz_block .quiz-detail-mobile {
    display: block;
  }
}
.quiz_block .quiz-detail-web {
  display: block;
}
@media only screen and (max-width: 768px) {
  .quiz_block .quiz-detail-web {
    display: none;
  }
}

.qq_answer_block.blockClick {
  position: relative;
}
.qq_answer_block.blockClick:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 10;
  position: absolute;
  top: 0px;
  left: 0px;
}

.section-block {
  max-width: 1200px;
  width: 90%;
  margin: auto;
  display: block;
  position: relative;
}
@media only screen and (max-width: 968px) {
  .section-block {
    max-width: 100%;
  }
}
.section-block .section-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media only screen and (max-width: 968px) {
  .section-block .section-header {
    margin-bottom: 10px;
  }
}
.section-block .section-header .section-header-seacrh {
  position: relative;
  text-align: right;
}
.section-block .section-header .section-header-seacrh input {
  color: #fff;
  padding-left: 25px;
  max-width: 220px;
  margin-left: auto;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
}
.section-block .section-header .section-header-seacrh input::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1; /* Firefox */
}
.section-block .section-header .section-header-seacrh input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1; /* Firefox */
}
.section-block .section-header .section-header-seacrh input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}
.section-block .section-header .section-header-seacrh input::-ms-input-placeholder { /* Microsoft Edge */
  color: #fff;
}
.section-block .section-body {
  width: 100%;
  background-color: #fff;
  border-radius: 15px;
  padding: 15px;
}
@media only screen and (max-width: 968px) {
  .section-block .section-body {
    padding: 10px 15px;
  }
}
.section-block .section-body.transparent {
  background-color: transparent;
}
.section-block .section-body .dataTables_wrapper {
  padding: 0 15px;
}
@media only screen and (max-width: 968px) {
  .section-block .section-body .dataTables_wrapper {
    padding: 0;
  }
}
.section-block .section-body .dataTables_wrapper th {
  font-weight: 300;
  color: #AAAAAA;
}
.section-block .section-body .dataTables_wrapper tr {
  background-color: #fff;
}
.section-block .section-body .dataTables_wrapper tr:nth-child(even) {
  background-color: #f3f3f3;
}
.section-block .section-body .dataTables_wrapper td {
  color: #000;
  vertical-align: top;
  padding: 10px 18px;
  vertical-align: middle;
}
@media only screen and (max-width: 968px) {
  .section-block .section-body .dataTables_wrapper td {
    padding: 10px 3px;
  }
}
.section-block .section-body .dataTables_wrapper td.center > form {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .section-block .section-body .dataTables_wrapper .hide-mobile {
    display: none;
  }
}
.section-block .section-body .dataTables_wrapper .hide-tags {
  overflow: hidden;
  width: 0px;
  height: 0px;
  opacity: 0;
  display: inline-block;
}
.section-block .section-body .dataTables_wrapper .ico-resetPassword,
.section-block .section-body .dataTables_wrapper .ico-edit,
.section-block .section-body .dataTables_wrapper .ico-preview {
  margin-right: 10px;
}
.section-block .section-body .dataTables_wrapper .dataTables_filter {
  display: none;
}
.section-block .section-body .section-form {
  color: #444;
}
.section-block .section-body .section-form .form-group {
  margin-bottom: 10px;
}
.section-block .section-body .section-form .form-group.more-mb {
  margin-bottom: 20px;
}
.section-block .section-body .section-form .form-label {
  padding-bottom: 10px;
  font-weight: bold;
}
.section-block .section-body .section-form .form-control {
  color: #000;
  font-weight: 300;
}

.input-block {
  flex: 0 0 100%;
  max-width: 100%;
}
.input-block.orangeBlock:before {
  position: relative;
  display: block;
  content: "";
  width: 100%;
  border-top: 1px dashed #FFA028;
  margin-top: 15px;
  margin-bottom: 30px;
}

.form-radio {
  display: inline-flex;
  grid-template-columns: min-content auto;
  grid-gap: 0.5em;
}
.form-radio:focus-within .radio__label {
  opacity: 1;
}

.radio__marking {
  display: none;
  width: 25px;
}
.radio__marking.is-active {
  display: block;
}

.radio__label {
  line-height: 1;
  transition: 180ms all ease-in-out;
  opacity: 0.8;
}

.radio__input {
  display: flex;
  padding-top: 5px;
}
.radio__input input {
  opacity: 0;
  width: 0;
  height: 0;
}
.radio__input input:focus + .radio__control {
  box-shadow: 0 0 0 0.05em #fff, 0 0 0.15em 0.1em currentColor;
}

.radio-gradient input:checked + .radio__control {
  background: radial-gradient(currentcolor 50%, rgba(255, 0, 0, 0) 51%);
}

.radio-before .radio__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.radio-before input + .radio__control::before {
  content: "";
  width: 50%;
  height: 50%;
  box-shadow: inset 0.5em 0.5em currentColor;
  border-radius: 50%;
  transition: 180ms transform ease-in-out;
  transform: scale(0);
}
.radio-before input:checked + .radio__control::before {
  transform: scale(1);
}

.radio__control {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  border: 1px solid currentColor;
  transform: translateY(-0.05em);
}

.form-select {
  display: inline-flex;
  grid-template-areas: "select";
  align-items: center;
  position: relative;
  width: 100%;
  border: 1px solid #CCC;
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
  cursor: pointer;
  line-height: 1.1;
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
}
.form-select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  font-weight: 300;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  outline: none;
}
.form-select select::-ms-expand {
  display: none;
}
.form-select select, .form-select::after {
  grid-area: select;
}
.form-select:not(.select--multiple)::after {
  content: "";
  justify-self: end;
  width: 0.8em;
  height: 0.5em;
  background-color: #AAAAAA;
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}

select:focus + .focus {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid color-main-light-gray;
  border-radius: inherit;
}

select[multiple] {
  padding-right: 0;
  /*
   * Safari will not reveal an option
   * unless the select height has room to
   * show all of it
   * Firefox and Chrome allow showing
   * a partial option
   */
  height: 6rem;
  /*
   * Experimental - styling of selected options
   * in the multiselect
   * Not supported crossbrowser
   */
}
select[multiple] option {
  white-space: normal;
  outline-color: #AAAAAA;
}

.select--disabled {
  cursor: not-allowed;
  background-color: #eee;
  background-image: linear-gradient(to top, #ddd, #eee 33%);
}

label {
  font-weight: 500;
  margin-bottom: 0;
}

.select + label {
  margin-top: 2rem;
}

input[type=file] {
  display: none;
  cursor: pointer;
}

.custom-file-upload-block {
  display: block;
}
.custom-file-upload-block .custom-file-upload {
  background-color: #FFA028;
  border-radius: 10px;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  margin: 10px 15px 15px;
  color: #fff;
}

.quickEditInput .quickEditInput__input {
  display: none;
  width: 100%;
}
.quickEditInput.is-active label {
  display: none;
}
.quickEditInput.is-active .quickEditInput__input {
  display: block;
}

.datatable_selectFilter {
  width: auto;
  background-color: rgba(255, 255, 255, 0.2);
  background-image: none;
  border: 1px solid #fff;
  color: #fff;
  margin-right: 15px;
  padding: 0.375rem 0.75rem;
}

.btn {
  border: 1px solid #ccc;
  margin: 0px 5px;
}

.btn-add {
  display: inline-flex;
  background-color: #fff;
}
.btn-add label {
  cursor: pointer;
}
.btn-add img {
  display: inline-block;
  margin-right: 5px;
  height: 25px;
}

.btn-primary {
  border-color: #fff;
  box-shadow: inset 0px 1px 0px 0px #a4e271;
  background-color: #44c767;
  border-radius: 6px;
  border: 1px solid #18ab29;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  padding: 6px 24px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #528009;
  transition: all 0.3s ease-in-out;
}
.btn-primary.btn-disabled {
  background-color: rgb(116, 116, 116);
}
.btn-primary.btn-red {
  box-shadow: inset 0px 1px 0px 0px #ea7a69;
  background-color: #cc4b37;
  border: 1px solid #d43e26;
  text-shadow: 0px 1px 0px #9d2513;
}
.btn-primary.btn-red:hover {
  background-color: #d43e26;
  border: 1px solid #d43e26;
}

.btn-primary:hover {
  background-color: #18ab29;
  border: 1px solid #18ab29;
}

.btn-primary:active {
  position: relative;
  top: 1px;
}/*# sourceMappingURL=main.css.map */