/* Colors */
/* Box Shadow */
/* Font Weights */
/* Border Radius */
/* Branding */
/* 
   MUST MATCH 
   \Superia\Superia.Application.WebAssembly.ClaimantPortal\Global\variables.scss
*/
/* Reset */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
/* Body */
body {
  background-color: #ffffff;
}

body, button {
  font-family: "Nunito", sans-serif;
}

/* Headers */
h1, h2, h3, h4 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

/* Inputs */
input, textarea {
  /* This breaks flexbox's auto-sizing */
  /*width: 100%;*/
  padding: 10px;
  border: 1px solid #BDBDBD;
}

/* Anmiations */
.spin {
  animation: spin-animation 0.5s;
}

@keyframes spin-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.spin-reverse {
  animation: spin-reverse-animation 0.5s;
}

@keyframes spin-reverse-animation {
  0% {
    transform: rotate(359deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.fade-in {
  animation: fadeIn 1s;
  -webkit-animation: fadeIn 1s;
  -moz-animation: fadeIn 1s;
  -o-animation: fadeIn 1s;
  -ms-animation: fadeIn 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cursor-disabled {
  cursor: not-allowed;
}

.pointer {
  cursor: pointer;
}

input.cursor-disabled-no-address:disabled {
  cursor: not-allowed;
  pointer-events: auto;
}

/* Custom File Uploads */
.custom-file-input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.custom-file-input::before {
  content: "Select some files";
  color: black;
  display: inline-block;
  background: -webkit-linear-gradient(top, #f9f9f9, #e3e3e3);
  border: 1px solid #999;
  border-radius: 2px;
  padding: 5px 8px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  text-shadow: 1px 1px #fff;
  font-weight: 700;
  font-size: 10pt;
}

.custom-file-input:hover::before {
  border-color: black;
}

.custom-file-input:active {
  outline: 0;
}

.custom-file-input:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

/* Flexbox utilities */
.break {
  flex-basis: 100%;
  height: 0;
}

.clickable {
  cursor: pointer !important;
}

.clickable-rows .k-master-row {
  cursor: pointer !important;
}

.flex-table .header-row {
  display: flex;
}
.flex-table .content-row {
  display: flex;
}
.flex-table div {
  flex: 1;
}

/* Seperator */
.seperator {
  height: 1px;
  border-bottom: 1px solid #ccc;
  width: 100%;
}
.seperator.full {
  margin: 20px 0 60px 0;
}

/* Inputs */
input {
  border: 1px solid #BDBDBD;
  border-radius: 2px;
  padding: 8px 0 5px 8px;
}

/* Default Button */
button, input[type=button] {
  cursor: pointer;
  background-color: transparent;
}
button:disabled, input[type=button]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
button:disabled:hover, input[type=button]:disabled:hover {
  background-color: #000000;
  color: #ffffff;
}

/* Select */
select {
  padding: 5px;
  border: 1px solid #BDBDBD;
  border-radius: 2px;
  width: 100%;
}
select:focus-visible {
  outline-style: solid;
  outline-color: #757575;
  border-radius: 2px;
}

.page-wrap {
  max-width: 95%;
  margin: 0 auto 80px auto;
}

.shown {
  display: block;
}

/* Components */
.component-header {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid #BDBDBD;
  margin-bottom: 20px;
}
@media screen and (max-width: 1023px) {
  .component-header {
    margin: 20px 0 20px 20px;
  }
}

/* From blazor app.css */
.page {
  position: relative;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
}

.sidebar {
  background-color: #31353D;
}

@media (min-width: 641px) {
  .page {
    flex-direction: row;
  }

  .sidebar {
    width: 200px;
    height: 100vh;
    position: sticky;
    top: 0;
  }

  /*.top-row {
  	position: sticky;
  	top: 0;
  	z-index: 1;
  }*/
  .main > div {
    padding-left: 2rem !important;
    padding-right: 1.5rem !important;
  }
}
.modal-content {
  background: #ffffff;
}

/* Utility Classes */
.center {
  display: block;
  margin: 0 auto;
  text-align: center;
  align-self: center;
}

.full-center {
  display: block;
  margin: 0 auto;
  text-align: center;
  align-self: center;
  vertical-align: middle;
}

.text-20 {
  font-size: 20px;
}

.form-submit {
  margin: 20px 0 40px 0;
}

.current-layout-table {
  margin: 20px 0 50px 0;
}

/* Documents Wrap */
.documents {
  padding: 10px;
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
}
@media screen and (max-width: 1023px) {
  .documents {
    margin: 0 20px;
  }
}

/* Profile */
.profile-header {
  margin-top: 40px;
}
.profile-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  margin: 20px;
  border: 1px solid #BDBDBD;
  background-color: #F5F5F5;
}
.profile-wrap .category {
  background-color: #ffffff;
  padding: 20px;
  margin: 20px 20px 20px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 4px;
}
.profile-wrap .category h4 {
  margin-bottom: 20px;
}
.profile-wrap .category .wrap {
  display: flex;
  align-items: center;
}
.profile-wrap .category .wrap input {
  margin-left: auto;
}

.branding {
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  border-bottom: 1px solid #E0E0E0;
  padding: 18px 0;
  background-color: #E3F2FD;
}
.branding .text {
  font-size: 39px;
}

.field-wrap .k-input {
  border: 1px solid #bdbdbd;
  border-radius: 2px;
}
.field-wrap .k-input:focus-within {
  box-shadow: none;
}
.field-wrap .k-input.k-invalid, .field-wrap .k-input.ng-invalid.ng-dirty, .field-wrap .k-input.ng-invalid.ng-touched {
  border-color: inherit;
}

.validation-message {
  color: #F44336;
}

.z-index-top {
  z-index: 99999999 !important;
}

/*.main {
    .body-wrap {
        max-width: 90%;
        margin: 0 auto;
    }
}*/
.menu-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #BDBDBD;
  margin-bottom: 50px;
  padding: 25px 0 15px 0;
}
.menu-wrap .menu {
  display: flex;
  align-self: self-end;
  margin-left: 30px;
}
.menu-wrap .menu li {
  padding: 8px 15px;
  position: relative;
  margin-right: 8px;
}
.menu-wrap .menu li:hover {
  color: #757575;
}
.menu-wrap .menu li:last-of-type {
  margin-right: 0;
}
.menu-wrap .menu li:not(:last-of-type):after {
  content: "/";
  position: absolute;
  right: -5px;
  top: 10px;
  font-size: 22px;
  font-weight: 300;
}
.menu-wrap .menu li a {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}
.menu-wrap .menu li a.active {
  color: #FB8C00;
}
.menu-wrap .menu li a span:nth-of-type(1) {
  margin-right: 5px;
}

/* Telerik Window Overrides */
.k-window.k-window-wrapper .k-window-titlebar.k-dialog-titlebar {
  cursor: pointer;
  background-color: #3A5A78;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
  border-radius: 2px;
}
.k-window.k-window-wrapper .k-window-content {
  border: 1px solid #BDBDBD;
}
.k-window.k-window-wrapper .k-window-content .content-wrap .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #EEEEEE;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.k-window.k-window-wrapper .k-window-content .content-wrap .top-row .content-header {
  font-size: 20px;
}
.k-window.k-window-wrapper .k-window-content .content-wrap .top-row .type-selector {
  margin-left: auto;
}
.k-window.k-window-wrapper .k-window-content .content-wrap .top-row .type-selector select {
  padding: 8px 10px;
}
.k-window.k-window-wrapper .k-window-content .content-wrap .field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.k-window.k-window-wrapper .k-window-content .content-wrap .field-row .field {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.k-window.k-window-wrapper .k-window-content .content-wrap .field-row .field label {
  font-weight: 600;
  margin-right: 15px;
}
.telerik-grid-custom-wrap .k-grid-pager {
  margin-left: auto;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.telerik-notification-custom {
  z-index: 9999;
}
.telerik-notification-custom .k-notification-container .k-notification-wrap {
  text-align: center;
  align-items: center;
  font-size: 18px;
}

.k-notification telerik-blazor .k-icon.k-i-x {
  color: #ffffff;
}

/*
    This is only here because
    Telerik's Class attribute
    is broken on Window
*/
.k-window.telerik-blazor .k-window-titlebar {
  background-color: #1976D2;
}
.k-window.telerik-blazor .k-window-titlebar .k-window-titlebar-actions .k-button.k-window-titlebar-action {
  color: #ffffff;
}

.k-window.k-window-wrapper.telerik-blazor .k-window-titlebar {
  background-color: #1976D2;
}
.k-window.k-window-wrapper.telerik-blazor .telerik-blazor.k-button.k-form-submit, .k-window.k-window-wrapper.telerik-blazor .telerik-blazor.k-button-rectangle:not(.k-icon-button) {
  background-color: #118654;
  border: 1px solid #118654;
  color: #ffffff;
  display: inline-block;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  text-transform: capitalize;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 2px;
  margin-bottom: 0;
  width: auto;
}
.k-window.k-window-wrapper.telerik-blazor .telerik-blazor.k-button.k-form-submit:hover, .k-window.k-window-wrapper.telerik-blazor .telerik-blazor.k-button-rectangle:not(.k-icon-button):hover {
  background-color: #13A060;
}

.ft-dropdown.k-dropdownlist.telerik-blazor.k-dropdownlist {
  background-color: #fff !important;
  border: 1px solid #ccc;
  padding: 2px 0;
  border-radius: 2px;
}

.ft-telerik-window-custom.no-padding .k-window-content {
  padding: 0;
}
.ft-telerik-window-custom .k-window-title strong {
  color: #fff;
}
.ft-telerik-window-custom .k-search-panel {
  z-index: 2;
  left: 0;
  transform: none;
}
.ft-telerik-window-custom .k-search-panel span.k-search-matches {
  padding: 0px 12px;
}

.ft-telerik-wizard-custom .k-stepper .k-step-label {
  display: block;
}
.ft-telerik-wizard-custom .k-stepper .k-step-label .k-step-text {
  white-space: break-spaces;
}

.flex-center {
  display: flex;
  align-content: center;
  justify-content: center;
}

.flex-v-center {
  display: flex;
  align-content: center;
}

.flex-h-center {
  display: flex;
  justify-content: center;
}

.form-letter-recipient-table {
  display: flex;
}
.form-letter-recipient-table thead {
  font-weight: bolder;
}
.form-letter-recipient-table thead td {
  vertical-align: middle;
}
.form-letter-recipient-table .claimant-name {
  text-align: justify;
}
.form-letter-recipient-table .claimant-name label {
  margin-left: 10px;
}
.form-letter-recipient-table td {
  padding: 10px 25px;
}
.form-letter-recipient-table tfoot {
  text-align: left;
  font-style: italic;
  font-size: 12px;
}

.box.search-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#loading .spinner {
  width: 40px;
  height: 40px;
  border: 5px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}
#loading .loading-text {
  font-size: 18px;
  color: #333;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}