@font-face {
    font-family: 'Poppins';
    font-display: swap;
    src: url(../../assets/fonts/Poppins-Regular.ttf);
}

:root {
  scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f3f1f1;
    color: #444444;
}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

.table > :not(caption) > * > * {
    padding: .4rem .4rem
}

table th {
    text-align: center;
    font-weight: 400;
    vertical-align: middle;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
    margin-top: 60px;
    padding: 20px 30px;
    transition: all 0.3s;
}

@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #012970;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 24px;
  font-weight: 600;
  color: #012970;
}

.card-body {
  padding: 0px 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

.card .row
{
    padding-bottom:6px;
}




.card .row .RadioButtonWidth label {
    margin-left: 8px;
    margin-right: 35px;
    vertical-align: top;
    margin-top: -4px;
    margin-bottom: 10px;
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
    line-height: 1;
}

.logo img {
  max-height: 28px;
  margin-right: 2px;
}

.logo span {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 60px;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
    padding-left: 20px;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.btnBar {
    text-align:right;
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Cards */

h1 {
    font-size: 22px;
    padding-bottom: 6px;
    font-weight: 600;
}

h2 {
    font-size: 20px;
    padding-bottom: 6px;
    font-weight: 600;
}

h3 {
    font-size: 18px;
    padding-bottom: 6px;
}

.general .nocontent {
    margin: 5px;
    padding: 5px;
    background-color: #e2e2e2;
    border: solid 1px #999999;
    font-style: italic;
    color: Black;
}

.general .label {
    font-weight:500;
}

.labelLanguage {
    color: white;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    padding: 20px 0;
    font-size: 14px;
    transition: all 0.3s;
    border-top: 1px solid #cddfff;
}

.footer .copyright {
  text-align: center;
  color: #012970;
}