﻿/*Global Colours*/
/*Role Colours*/
/* MISC */
/*-----------------------------------------------------------------------------------  
     CSS INDEX
    ===================

    1. Global Text Styling
    2. Global Element Styling
    3. Login Page
    4. Logout Page
    5. Logged Out Page
    6. Welcome Page
    7. Grants Page
    8. Mud Styling
    9. Manage Client Modal
    10. Email Pages
    11. Set Password
    12. Multi Factor Authentication
    13. Manage User Modal

-----------------------------------------------------------------------------------*/
@font-face {
  src: url(fonts/CamptonLight.otf);
  font-family: CamptonLight;
}
@font-face {
  src: url(fonts/CamptonBold.otf);
  font-family: CamptonBold;
}
html, body {
  height: 100%;
}

* {
  font-family: CamptonLight;
}

/*----------------------------------------*/
/*  1.  Global Text Styling
/*----------------------------------------*/
.sr-vertical-text {
  font: normal normal bold 14px CamptonLight;
  writing-mode: vertical-rl;
  transform: scale(-1);
  letter-spacing: 0.15em;
  word-spacing: 2px;
}

.vertical-center-padding {
  padding-top: 15vh;
}

.page-title {
  text-align: left;
  font: normal normal bold 50px CamptonLight !important;
  letter-spacing: 0px;
  color: #000000;
}

.page-heading {
  text-align: left;
  font: normal normal bold 32px/39px CamptonLight !important;
  letter-spacing: 0px;
  color: #000000;
}

.page-subtitle {
  text-align: left;
  font: normal normal bold 18px/39px CamptonLight !important;
  letter-spacing: 0px;
  color: #000000;
}

.page-subtitle-small {
  font-size: 90% !important;
}

.sr-bold-text {
  font-weight: bold;
}

.sr-inline-link {
  color: #1f9c66;
  text-decoration: underline;
  text-decoration-color: #1f9c66;
}

/*----------------------------------------*/
/*  2.  Global Element Styling
/*----------------------------------------*/
a, a:hover, a:focus, a:active {
  text-decoration: none;
  color: inherit;
}

.main-blazor-grid {
  margin-top: 2%;
}

.check-label-container {
  display: flex;
  align-items: center;
  height: 20px;
  margin: 5% 0 5%;
}

.sep-orange-2 {
  width: 55px;
  height: 1px;
  position: relative;
  display: block;
  left: -10px;
  background-color: #be4b5a;
  margin: 20px auto 30px;
}

.sep-orange-2:before {
  content: "";
  width: 55px;
  height: 1px;
  position: absolute;
  right: -20px;
  background-color: #be4b5a;
  margin: 5px 0;
}

.checkbox-styling {
  vertical-align: middle;
  margin-left: 1%;
}

.cursor-pointer {
  cursor: pointer;
}

.link {
  text-decoration: underline !important;
  color: blue !important;
}

.bottom-form-top-margin {
  margin-top: 10%;
}

.bottom-form-top-margin-small {
  margin-top: 5%;
}

.margin-bottom-ten {
  margin-bottom: 10%;
}

.left-margin-10 {
  margin-left: 10px;
}

.right-margin-10 {
  margin-right: 10px;
}

.half-width {
  width: 50%;
}

#serverErrorMessages > .mud-alert-position > .mud-alert-message {
  padding-top: 0 !important;
}

.header-seperator {
  background-color: #000;
  display: block;
  height: 1px;
  left: -10px;
  margin: 15px auto 35px;
  position: relative;
  width: 55px;
}

.header-seperator:before {
  background-color: #000;
  content: "";
  height: 1px;
  margin: 5px 0;
  position: absolute;
  right: -20px;
  width: 55px;
}

div.validation-message {
  width: 100%;
  margin-top: 0.25rem;
  color: #dc3545;
}

.invalidField {
  outline: 2px solid red;
}

body {
  background: #FFFFFF;
}

.body-container {
  margin-top: 30px;
  padding-bottom: 20px;
}

.btn-sr {
  border-radius: 0;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  letter-spacing: 0px;
  text-align: center;
  font: normal normal 18px/28px CamptonLight;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-sr:disabled {
  opacity: 0.65;
  cursor: default;
}

.btn-sr-primary {
  background-color: #27CC85;
  color: #FFFFFF;
}

.btn-sr-primary:hover {
  background-color: #1f9c66;
}

.btn-sr-primary[disabled], .btn-sr-primary[disabled]:hover, .btn-sr-primary[disabled]:focus, .btn-sr-primary[disabled]:active {
  background-color: #27CC85;
}

.btn-sr-secondary {
  background: transparent;
  color: #9A9A9A;
}

.btn-sr-secondary:hover {
  color: #6b6b6b;
}

.btn-sr:focus {
  outline: none !important;
}

.btn-sr-add {
  background-color: #4BBE58;
  color: #FFFFFF !important;
  font: normal normal bold 25px/39px CamptonLight !important;
  border-radius: 30px;
  letter-spacing: 0px;
  transition: transform 300ms;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
}

.btn-sr-add:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: #355E32;
  transition: transform 300ms;
  bottom: 0;
  left: 0;
  transform: translate3d(0, calc(100% - 0px), 0);
  z-index: -1;
}

.btn-sr-add:hover:after {
  transform: translate3d(0, 0, 0);
}

.btn-sr-add:disabled:after {
  content: "";
  position: absolute;
  width: 100%;
  background: #27cc85;
  bottom: 0;
  left: 0;
  top: 100%;
  z-index: -1;
}

.btn-sr-add:disabled:hover:after {
  top: 100%;
}

.btn-action {
  margin-left: 5%;
  margin-right: 5%;
  width: 40px;
}

.btn-action:hover i {
  color: white !important;
}

.btn-outline-danger {
  color: #dc3545 !important;
  border-color: #dc3545 !important;
}

.btn-outline-primary {
  color: #27CC85 !important;
  border-color: #27CC85 !important;
}

.btn-outline-primary:hover {
  background-color: #27CC85 !important;
}

@media (min-width: 0px) {
  .left-margin {
    margin-left: 0px;
  }
  .top-margin-30 {
    margin-top: 15%;
  }
  .top-margin-25 {
    margin-top: 12%;
  }
  .top-margin-20 {
    margin-top: 10%;
  }
}
@media (min-width: 768px) {
  .left-margin {
    margin-left: 140px;
  }
  .top-margin-30 {
    margin-top: 30%;
  }
  .top-margin-25 {
    margin-top: 25%;
  }
  .top-margin-20 {
    margin-top: 20%;
  }
}
/*----------------------------------------*/
/*  3.  Login Page
/*----------------------------------------*/
.login-page > .row {
  padding-top: 2%;
}

.login-button {
  width: 100%;
}

.forgotten-password-column {
  text-align: center;
}

.forgotten-password-row {
  padding-top: 5%;
  padding-bottom: 5%;
}

.login-container-smartslip-small {
  display: none;
}

@media (min-width: 0px) {
  /*.login-container { text-align: center; }*/
  .login-container-inner {
    margin: 0px;
  }
}
@media (max-width: 767px) {
  .login-container-smartslip-large {
    display: none;
  }
  .login-container-smartslip-small {
    display: block;
  }
  .login-container-inner {
    margin: auto;
  }
  .login-descriptor {
    display: none;
  }
  .navbar-sm {
    background-color: #4BBE58;
    min-height: 60px;
    margin-right: 0;
    margin-left: 0px;
    /*border-bottom: 1px solid #fff;*/
    padding-top: 2px !important;
  }
  .sr-sm-hide {
    display: none !important;
  }
  .sr-sm-show {
    display: block !important;
  }
}
@media (min-width: 992px) {
  /*.login-container { text-align: left; }*/
  .login-container-inner {
    margin: 0px;
    margin-right: auto;
  }
}
/*----------------------------------------*/
/*  4.  Logout Page
/*----------------------------------------*/
.logout-page > .row {
  padding-top: 2%;
}

.logout-button {
  width: 136px;
}

/*----------------------------------------*/
/*  5.  Logged Out Page
/*----------------------------------------*/
.logged-out-page iframe {
  display: none;
  width: 0;
  height: 0;
}

/*----------------------------------------*/
/*  6.  Welcome Page
/*----------------------------------------*/
.welcome-page li {
  list-style: none;
  padding: 4px;
}

/*----------------------------------------*/
/*  7.  Grants Page
/*----------------------------------------*/
.grants-page .card {
  margin-top: 20px;
  border-bottom: 1px solid lightgray;
}

.grants-page .card .card-title {
  font-size: 120%;
  font-weight: bold;
}

.grants-page .card .card-title img {
  width: 100px;
  height: 100px;
}

.grants-page .card label {
  font-weight: bold;
}

/*----------------------------------------*/
/*  8.  Mud Styling
/*----------------------------------------*/
.mud-table-pagination-information {
  margin-top: 15px !important;
}

.mud-table-body > .mud-table-row > td:last-child,
.mud-table-head > .mud-table-row > th:last-child {
  text-align: center;
}

.center-penultimate-col > .mud-table-container > .mud-table-root > .mud-table-head > .mud-table-row > th:nth-last-child(2),
.center-penultimate-col > .mud-table-container > .mud-table-root > .mud-table-body > .mud-table-row > td:nth-last-child(2) {
  text-align: center;
}

.mud-table {
  border-radius: 0 !important;
  border: #F1F1F1 1px solid;
}

/*----------------------------------------*/
/*  8.  Modal Styling
/*----------------------------------------*/
.modal {
  line-height: 1.5 !important;
  padding-top: 5%;
}

.modal-content {
  border: 0 !important;
  border-radius: 0 !important;
}

.modal-drop-shadow {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6588235294);
}

.modal-header {
  display: block !important;
  text-align: center;
  border-bottom: 0 !important;
}

.modal-dialog {
  max-width: 1000px !important;
}

.modal-body {
  padding-left: 15rem !important;
  padding-right: 15rem !important;
  padding-bottom: 2rem !important;
  padding-top: 1rem !important;
}

.modal-body-wide {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
  padding-bottom: 2rem !important;
  padding-top: 1rem !important;
}

.model-btn-submit {
  width: 100%;
}

.model-close-col {
  text-align: center;
  padding-top: 3%;
}

/*----------------------------------------*/
/*  9.  Manage Client Modal
/*----------------------------------------*/
.time-till-delete {
  margin-bottom: 10%;
}

/*----------------------------------------*/
/*  10.  Email Pages
/*----------------------------------------*/
.email-page-title {
  color: #4BBE58;
  font-size: 70px;
  font-weight: bold;
}

.email-page-subtitle {
  color: #4BBE58;
  font-size: 36px;
  font-weight: bold;
}

.email-page-title-column {
  padding-top: 30%;
  padding-right: 10%;
}

.email-page-grid {
  display: grid;
  grid-template-columns: 47.5% 5% 47.5%;
  padding: 10px;
}

.email-page-vertical-logo {
  position: absolute;
  bottom: 15%;
}

.email-page-vertical-text-column {
  justify-self: center;
}

.email-page-normal-text {
  color: #4BBE58;
  font-size: 19px;
  font-weight: bold;
}

.email-page-right-column-content {
  padding-top: 70%;
  padding-left: 10%;
}

.email-page-try-again-button {
  margin-right: 7%;
  width: 136px;
  font-size: 18px;
}

.email-page-try-again-button:hover {
  text-decoration: none;
  color: white;
}

/*----------------------------------------*/
/*  11. Set Password
/*----------------------------------------*/
.sr-subheading {
  background: transparent;
  font: normal normal 25px/39px CamptonLight !important;
  letter-spacing: 0px;
  color: #4BBE58;
  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 0 !important;
  padding: 0 !important;
  transition: transform 300ms;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
}

.sr-bold-text {
  font-weight: bold;
}

/*.textbox-bottom-border {
    border-top: none;
    border-left: none;
    border-right: none;
    width: 100%
}

.textbox-bottom-border:focus {
    outline: none;
    border-bottom-color: #27cc85;
}*/
.sr-textbox {
  border: 2px solid;
  border-radius: 30px;
  width: 100%;
  padding: 10px;
  border-color: #CCCCCC;
}

.sr-textbox:focus {
  outline: none;
  border-color: #4BBE58;
}

.sr-textbox:focus-visible {
  outline: none;
  border-color: #4BBE58;
}

.sr-mud-textbox {
  margin-top: 0px !important;
}

.sr-mud-textbox > .mud-input-control-input-container > .mud-input {
  margin-top: 0px !important;
}

.sr-mud-textbox > .mud-input-control-input-container > .mud-input > input {
  border: 2px solid;
  border-radius: 30px;
  width: 100%;
  padding: 10px;
  border-color: #CCCCCC;
}

.sr-mud-textbox > .mud-input-control-input-container > .mud-input > input:focus {
  outline: none;
  border-color: #4BBE58;
}

.sr-mud-textbox > .mud-input-control-input-container > .mud-input > input:focus-visible {
  outline: none;
  border-color: #4BBE58;
}

.signup-text {
  margin-top: 20px;
  text-align: center;
  margin-right: 20%;
  margin-left: 20%;
}

.submit-button {
  background: #27CC85;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  border: none;
}

.submit-button-container {
  text-align: right;
  margin-right: 20%;
}

/*----------------------------------------*/
/*  12. Multi Factor Authentication
/*----------------------------------------*/
#qrCode {
  padding-bottom: 16px;
}

#qrCode > img {
  margin: auto;
  border: 10px white solid;
  outline: 5px solid #4BBE58;
  outline-offset: -5px;
  border-radius: 5px;
}

/*----------------------------------------*/
/*  12. Manage User Modal
/*----------------------------------------*/
.role-card-outer {
  margin: 5px 0px;
}

.role-card-inner {
  font: normal normal bold 14px/22px CamptonLight;
  color: #565656;
  min-height: 30px;
  padding-top: 3px;
  min-width: 70px;
}

.role-card-inner:hover {
  cursor: pointer;
}

.role-card-inner-selected {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.role-x-icon {
  font-size: 1.2rem !important;
  font-weight: bolder !important;
  margin-top: 4px;
}

.selected-role-col {
  padding-right: 15px;
  padding-left: 15px;
}

.role-card-text {
  margin-top: 3px;
}
