

.main-panel{
  background-color: #fff;
}
.navbar {
  margin-bottom: 0;
  border-top: 10px solid #dfcda2;
  padding-top: 30px;
}
.heds {
  background: #c4161c;
  color: #fff;
  text-align: center;
  font-weight: 600;
  letter-spacing: .1px;
  font-size: 17px;
  margin: 0;
}
.lines {
  border: 2px solid #c4161c;
  margin: 0;
}
.lines .card-body{
  padding: 30px 15px;
}
.lines h2 {
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
}
.lines h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
}
.lines .form-control {
  border: 1px solid #dfcda2;
  margin-bottom: 10px;
  padding: 8px 10px;
  height: auto;
}
.lines .form-control:focus {
  border: 1px solid #c4161c;
}
.lines label {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  margin-bottom: 2px;
}
.custom-control-label::before {
  background-color: #ffffff;
  border: 2px solid #dfcda2;
  box-shadow: none;
}
.custom-radio .custom-control-input:checked~.custom-control-label::before {
  background-color: #c4161c;
  border: 2px solid #c4161c;
}
.custom-control {
  margin-bottom: 5px;
}
.lines a {
  color: #000;
  text-decoration: underline;
}
ul {
  padding-left: 15px;
}
li{
  font-weight: 500;
  font-size: 14px;
}
.btn {
  color: #fff;
  background-color: #c4161c;
  border-color: #c4161c;
  box-shadow: none;
  padding: 8px 20px;
  font-weight: 600;
}
.btn:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
  box-shadow: none;
  outline: none;
}
::-webkit-scrollbar {
width: 7px;
}
::-webkit-scrollbar-track {
background: #d4d4d4;
}
::-webkit-scrollbar-thumb {
background: #c4161c;
}
::-webkit-scrollbar-thumb:hover {
background: #c4161c;
}
.loader {
  border: 4px solid #cecece; /* Light grey */
  border-top: 4px solid #c4161c; /* Blue */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));

  background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  -moz-animation: spinner 150ms infinite linear;
  -ms-animation: spinner 150ms infinite linear;
  -o-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.navbar.bg-dark {
  color: #fff;
  background-color: #dfcda2 !important;
  box-shadow: rgb(32 33 36 / 13%) 0px 1px 6px 0px;
  border-radius: 0;
}
.dropdown-menu {
  top: 48px;
  width: 170px;
}
.navbar .navbar-nav .nav-item .nav-link {
  font-weight: 600;
  color: #000;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  font-weight: 600;
  color: #ffffff;
  background: #c4161c;
  border-radius: 0;
}
.navbar.bg-dark .dropdown-item:hover {
  box-shadow: none;
  background-color: #fff;
  color: #c4161c;
}
.navbar.bg-dark .dropdown-item:focus {
  box-shadow: none;
  background-color: #fff;
  color: #c4161c;
}
.dropdown-menu {
  padding: 0;
}
.dropdown-menu .dropdown-item {
  margin: 0;
  font-weight: 600;
  padding: 11px 10px;
  border-bottom: 1px solid #dfcda2a3;
}
.contents {
  margin-top: -60px;
  padding: 27px 0;
  min-height: calc(100vh - 123px);
}