:root {
  --font-size-medium: 1.9rem;
  --font-size-large: 2.5rem;

  --icon-size-medium: 1.3rem;
  --icon-size-large: 2rem;

  --margin-small: 1rem;
  --margin-medium: 2.5rem;
  --margin-large: 5rem;
  --margin-xlarge: 10rem;

  --padding-small: 1rem;
  --padding-medium: 2.5rem;
  --padding-large: 5rem;

  --flex-gap-small: 20px;

  --color-gray-200: hsl(206, 7%, 42%);
  --color-gray-300: hsl(206, 10%, 30%);
  --color-primary-light: hsl(208 88% 62%);
  --color-black: hsl(210deg 15% 6%);
  --color-black-light: hsl(210deg 15% 15%);
  --color-danger: hsl(350deg 75% 50%);
  --color-warning: hsl(31, 94%, 60%);
  --color-info: hsl(209, 53%, 37%);
  --color-success: hsl(173, 50%, 50%);
  --color-success-light: hsl(173, 60%, 80%);
  --color-white: hsl(220, 13%, 91%);
  --color-background: #e8e8e8;
  --color-primary-black: #232121;
  --color-background-control: #c8c8c8;

  --color-btn-add: hsl(173, 75%, 35%);
  --color-btn-edit: hsl(214 75% 35%);

  --color-text: hsl(51, 54%, 3%);
  --color-text-heading: hsl(209, 40%, 28%);
  --color-text-info: hsl(210, 22%, 49%);

  --border-1: 1px solid hsl(209, 23%, 60%);
  --shadow-dark: drop-shadow(2px 2px 2px hsl(0 0% 0% / 0.3));
  --box-shadow: 2px 2px 2px hsla(20, 15%, 95%, 0.5);

  --audit-form-label-width: 200px;
  --audit-form-input-width: 300px;
}

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  3. Allow percentage-based heights in the application
*/
html,
body {
  /* scroll-behavior: smooth; */
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--color-text);
  background: var(--color-background);
}

/*
  6. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
}

/*
  7. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  8. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
  9. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms;
}

a:hover {
  cursor: pointer;
  text-decoration: underline;
}

table,
td,
th {
  border: 1px solid;
  font-size: 14px;
  padding: 3px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th {
  background: var(--color-black);
  color: var(--color-white);
  border: 2px;
}

.err-border {
  border: 1px solid var(--color-danger);
}

.err-text {
  color: var(--color-danger);
}

.success-text {
  color: var(--color-success);
}

.page-content-wrapper {
  margin: var(--margin-small);
  margin-top: 65px;
  margin-bottom: 130px;
}

.icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 30px;
}
.icon-btn span {
  font-size: 10px;
  font-weight: bold;
  text-align: center;
}

.icon-btn.add svg {
  color: var(--color-btn-add);
}

.icon-btn.edit svg {
  color: var(--color-btn-edit);
}

.icon-btn.remove svg {
  color: var(--color-danger);
}
.title-with-btn-wrapper {
  position: relative;
}
.title-with-btn-wrapper .icon-btn {
  position: absolute;
  top: -20px;
  right: 0;
  color: var(--color-info);
}

.control-btns-wrapper {
  display: flex;
  justify-content: space-between;
  flex: 2;
}

.margin-mid {
  margin: 25px 0px;
}
.error-wrapper {
  padding: 15px;
  background: hsla(355, 100%, 95%, 1);
  position: relative;
  font-weight: bold;
}

.error-wrapper .close-btn {
  position: absolute;
  top: 0;
  right: 5px;
  color: black;
  cursor: pointer;
}
.error-wrapper p {
  color: var(--color-danger);
}

/************************************* Navbar ********************************/

nav.header {
  width: 100%;
  background: var(--color-black);
  padding: var(--padding-small);
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  height: 50px;
  padding: 5px 1rem;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.7);
  z-index: 1;
}

nav.header h2 {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 18px;
  font-weight: normal;
}

nav.header ul {
  display: flex;
  color: var(--color-white);
  list-style: none;
  gap: var(--flex-gap-small);
}

nav .user-info {
  color: var(--color-warning);
  padding: 3px 5px;
  border: 1px solid;
  border-radius: 5px;
  font-size: 10px;
}

.logout-btn {
  text-align: center;
  border-bottom: 1px solid;
  width: fit-content;
  text-transform: uppercase;
  cursor: pointer;
}

/************************************* Buttons ********************************/

.btn {
  padding: 10px;
  color: #fff;
  border-radius: 6px;
  border: none;
  width: 100%;
}

.btn:hover {
  cursor: pointer;
  background: gray;
  color: white;
}
.btn:active {
  transform: translateY(3px);
  transition: transform 100ms;
}

.btn.primary {
  background: var(--color-black);
}

.btn.danger {
  background: var(--color-danger);
}

.btn.success {
  background: var(--color-success);
}

.btn.warning {
  background: var(--color-warning);
}

.btn.muted {
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  position: relative;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
}

.btn.small {
  font-size: 14px;
  font-weight: bold;
}

.btn-loader-wrapper {
  position: relative;
  height: 40px;
}

.btn:disabled {
  background: gainsboro;
}
.btn:disabled:hover {
  filter: none;
}

.btn:disabled:active {
  transform: none;
}

/************************************ Login *********************************/

.login-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.login-wrapper h1 {
  font-weight: 300;
  font-size: 50px;
  line-height: 50px;
}

.login-wrapper .btn {
  margin-top: 25px;
  width: 250px;
}

/********************************* Cust Selector Page **************************/

.view-submitted-forms-btn-wrapper {
  margin-top: 35px;
}

.view-submitted-forms-btn-wrapper button {
  width: 100%;
}

/************************************* Form ********************************/

.img-loader-wrapper {
  position: relative;
  height: 52px;
}
.store-audit-form section {
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  margin: 25px 0px;
  box-shadow: 2px 4px 4px hsl(0deg 0% 0% / 0.25);
}

.audit-form-section-title,
.audit-form-section-subtitle {
  font-weight: 300;
  font-size: 24px;
  text-transform: uppercase;
  border-bottom: 2px solid;
}

.audit-form-section-subtitle {
  font-size: 20px;
}
.audit-form-section-subtitle.small {
  font-size: 16px;
  font-weight: bold;
}
.label-input-wrapper {
  display: block;
  margin: var(--margin-small) 0px;
}

.label-input-wrapper > label {
  display: block;
  font-size: 16px;
  width: 100%;
  text-transform: uppercase;
  background: var(--color-primary-black);
  color: white;
  padding: 5px 10px;
  font-weight: normal;
}

.label-input-err-msg {
  font-size: 14px;
  background: hsl(350deg 50% 95%);
  color: var(--color-danger);
  font-weight: 500;
}

.label-input-wrapper .req-input {
  font-size: 14px;
  color: var(--color-danger);
  position: relative;
  top: -5px;
  left: -3px;
}

.label-input-wrapper textarea {
  width: 100%;
  padding: 5px 10px;
}

.label-input-wrapper > label + input,
.label-input-wrapper > label + select {
  width: 100%;
  padding: 5px 10px;
}

.form-input-err {
  color: var(--color-danger);
}

.label-input-wrapper .instruction-wrapper {
  font-size: 14px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  text-transform: none;
  gap: 5px;
}

.label-input-wrapper .instruction-wrapper .icon-wrapper {
  font-size: 20px;
}

.audit-form-store-dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #d1d1d1;
}

/**
* To give a nice visual effect that shows both the spinning loader and loading text..
*/
.audit-form-store-dropdown.loading {
  min-height: 150px;
}

.audit-form-store-dropdown i {
  font-weight: bold;
  text-align: center;
}

.audit-form-store-dropdown ul {
  list-style: none;
}

.audit-form-store-dropdown li {
  font-weight: 400;
  text-align: start;
  border-bottom: 1px solid white;
  padding: 10px;
}

.audit-form-store-dropdown li span {
  /* padding: 5px 12px; */
  display: block;
}
.audit-form-store-dropdown li:hover {
  cursor: pointer;
  background: #ccc;
}
.selected-store-label-val {
  display: flex;
}
.selected-store-label-val .label {
  width: 30%;
  background: var(--color-background-control);
}
.selected-store-label-val .value {
  flex: 1;
}
.selected-store-label-val span {
  display: inline-block;
  background: #d1d1d1;
  margin: 0 1px 1px 0;
  padding: 5px 8px;
}
.audit-form-submit-btn-wrapper {
  margin-top: var(--margin-large);
  margin-bottom: 25px;
}

.audit-form-img-upload-wrapper {
  border: 2px solid var(--color-primary-black);
  margin: var(--margin-small) 0px;
}

.no-img-notif-wrapper {
  font-size: 14px;
}
.audit-form-img-dropzone-title {
  font-weight: bold;
  color: var(--color-info);
}

.audit-form-img-dropzone {
  padding: var(--padding-small);
  cursor: pointer;
  font-size: 13px;
}
.audit-form-img-upload-wrapper {
  position: relative;
}

.audit-form-img-upload-wrapper .icon-wrapper {
  font-size: 20px;
  position: absolute;
  top: 0;
  right: 0;
}

.audit-form-uploaded-imgs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style-type: none;
  padding: 5px 10px;
  background: var(--color-background-control);
  border: 2px solid var(--color-background);
}
.audit-form-uploaded-imgs li .img-name {
  width: 90%;
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.audit-form-uploaded-imgs .uploaded-img-wrapper {
  max-width: 275px;
}

.audit-form-uploaded-imgs .uploaded-img-wrapper img {
  width: auto;
  max-width: 95%;
  max-height: 200px;
}

.audit-form-image-with-key {
  background: var(--color-primary-black);
}
.audit-form-image-with-key h4 {
  margin-left: 10px;
  color: white;
  font-weight: normal;
}

.audit-form-checkbox-list-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.audit-form-checkbox-list-wrapper label {
  background: var(--color-background-control);
  width: 50%;
  box-sizing: border-box;
  padding: 10px;
  padding-left: 30px;
  border-bottom: 1px solid var(--color-background);
  border-right: 1px solid var(--color-background);
  font-size: 14px;
}
.audit-form-checkbox-list-wrapper label:nth-child(even) {
  border-right: none;
}
.audit-form-checkbox-list-wrapper label > input {
  margin-right: 5px;
  margin-left: -18px;
}
.audit-form-uploaded-imgs li .img-remove {
  color: var(--color-danger);
  cursor: pointer;
}

.audit-form-feedback {
  min-height: 25px;
  margin-top: 25px;
}

.audit-form-discard-changes-btn-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.audit-form-control-btns {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  padding: 10px 20px;
  z-index: 99;
}

.audit-form-ag-products-list-wrapper {
  max-height: 350px;
  overflow-y: scroll;
}
.audit-form-ag-products-backbar .audit-form-checkbox-list-wrapper label {
  width: 100%;
}

.audit-form-ag-products-backbar
  .audit-form-checkbox-list-wrapper
  label:nth-child(even) {
  border-right: 1px solid var(--color-background);
}
.audit-form-control-btns .control-btn {
  font-size: 30px;
  display: flex;
  align-items: center;
  filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 0.2));
  transition: transform 250ms;
}
.audit-form-control-btns .control-btn > svg {
  display: inline-block;
}
.control-btn span {
  font-size: 16px;
  margin-left: 10px;
}

.submit-btn {
  color: var(--color-success);
}
.discard-btn {
  color: var(--color-danger);
}

.goback-btn {
  color: var(--color-white);
}
.saved-brand-activity,
.saved-damaged-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0px;
}

.saved-damaged-product .control-btns,
.saved-brand-activity .control-btns {
  display: flex;
  justify-content: space-between;
  flex: 2;
}

.saved-damaged-product p,
.saved-brand-activity p {
  margin-right: 15px;
  width: 70%;
  font-size: 15px;
}

.saved-brand-activity p {
  font-weight: bold;
}

.saved-damaged-product .desc {
  font-weight: bold;
  color: brown;
}
.saved-damaged-product .value {
  font-weight: bold;
}
.saved-brand-activity .btn,
.saved-damaged-product .btn {
  background: var(--color-text-info);
  width: 75px;
}

.audit-form-inventory-level-wrapper .sku-desc {
  margin-left: 5px;
}

.audit-form-inventory-item-wrapper .desc-wrapper .counter {
  font-weight: bold;
  display: inline-block;
  width: 30px;
}

.audit-form-inventory-item-wrapper {
  border-bottom: 1px solid;
  padding: 10px 0;
}
.audit-form-inventory-item-wrapper:last-child {
  border-bottom: none;
}
.audit-form-inventory-item-wrapper .val {
  display: flex;
  flex-direction: column-reverse;
}

.ag-inventory-sku-oos-wrapper .sku-oos-results {
  list-style: none;
  border: 1px solid;
  font-size: 13px;
  max-height: 250px;
  overflow-y: scroll;
  background: var(--color-gray-200);
  position: relative;
  top: -15px;
  color: #fff;
}

.ag-inventory-sku-oos-wrapper li {
  padding: 20px 0px 20px 5px;
  border-bottom: 1px solid #fff;
}

.ag-inventory-sku-oos-wrapper .desc {
  color: var(--color-warning);
  font-weight: 600;
}

.audit-form-inventory-item-wrapper .desc-wrapper,
.audit-form-inventory-item-wrapper .sku-wrapper {
  display: flex;
}

.audit-form-inventory-item-wrapper .sku-wrapper {
  margin-left: 32px;
}

.audit-form-inventory-item-wrapper .sku-wrapper .key {
  font-size: 13px;
}
.audit-form-inventory-item-wrapper .sku-wrapper .val {
  color: brown;
  font-size: 13px;
}

.audit-form-inventory-item-wrapper .sku-wrapper .key {
  display: inline-block;
  margin-right: 5px;
}
.audit-form-inventory-item-wrapper .label-input-wrapper {
  margin: 0;
}

.audit-form-inventory-item-wrapper .inv-level-wrapper {
  display: flex;
  justify-content: space-around;
  padding: 10px;
}

.audit-form-inventory-item-wrapper .inv-level-wrapper .inv-level-min,
.audit-form-inventory-item-wrapper .inv-level-wrapper .inv-level-max {
  flex: 2;
  text-align: center;
}

.audit-form-inventory-item-wrapper .inv-level-wrapper .inv-dropdown {
  flex: 1.8;
}

.audit-form-inventory-level-wrapper .top-sellers {
  width: 80%;
}
.audit-form-inventory-level-wrapper input {
  width: 50px;
  text-align: right;
}
.audit-form-inventory-level-wrapper .status {
  position: relative;
}
.audit-form-inventory-level-wrapper .change-btn {
  position: absolute;
  right: 0;
}
.audit-form-inventory-level-wrapper .change-btn .btn {
  padding: 3px;
}

.audit-form-ag-prods-backbar {
  max-height: 350px;
  overflow-y: scroll;
}

.saved-brand-activity .brand-info-wrapper p {
  font-weight: bold;
}

.brand-info-wrapper {
  flex: 6;
}

.brand-info-wrapper .key {
  font-size: 12px;
  font-weight: bold;
}

.brand-info-wrapper .value {
  font-size: 14px;
}

.saved-brand-activity .control-btns-wrapper {
  flex: 1;
  gap: 10px;
}

.readonly-form-wrapper {
  color: white;
  display: flex;
  align-items: center;
}

.readonly-form-wrapper .icon-wrapper {
  font-size: 25px;
}

.readonly-form-wrapper .sub-user-info {
  font-size: 14px;
}

.readonly-form-wrapper .sub-user-info .value {
  font-weight: 800;
}

.audit-form-competitive-brands-near-ag-wrapper .instruction-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  background: lightgray;
  align-items: center;
}

.audit-form-competitive-brands-near-ag-wrapper
  .instruction-wrapper
  .icon-wrapper {
  font-size: 20px;
}

.audit-form-competitive-brands-near-ag-wrapper
  .instruction-wrapper
  .instruction {
  font-size: 14px;
}

/***************************************** Footer *******************************************/

.audit-form-footer {
  position: fixed;
  bottom: 50px;
  left: 0;
  background: var(--color-black);
  width: 100%;
  color: var(--color-white);
  display: flex;
  justify-content: space-evenly;
  font-size: 30px;
  padding: 8px;
  box-shadow: 0px -3px 5px rgba(0, 0, 0, 0.7);
}

.audit-form-footer .selected {
  color: var(--color-warning);
  font-weight: bold;
}

.modal-conf-text-wrapper {
  display: flex;
  align-items: center;
}
.modal-confirm-wrapper h3 {
  text-align: center;
  font-size: 15px;
}

.modal-confirm-wrapper .confirm-icon-wrapper {
  font-size: 35px;
}

.modal-confirm-wrapper .confirm-icon-wrapper.danger {
  color: var(--color-danger);
}

.modal-confirm-wrapper .confirm-icon-wrapper.success {
  color: var(--color-success);
}

.modal-confirm-wrapper .confirm-icon-wrapper.warning {
  color: var(--color-warning);
}

.modal-confirm-wrapper .modal-control-btns {
  margin-top: var(--margin-small);
}

.modal-confirm-wrapper .error-text {
  text-align: center;
  max-height: 250px;
  overflow-y: auto;
  color: var(--color-danger);
  font-size: 14px;
  font-weight: normal;
}
.modal-control-btns {
  display: flex;
  justify-content: space-between;
}

.modal-danger-btn-wrapper {
  margin-top: 35px;
}
.modal-control-btns .btn {
  width: 50%;
}

.modal-feedback-wrapper {
  margin-top: 25px;
}

.added-ag-products-backbar span {
  display: block;
}

.icon-btn-info-text {
  font-size: 90%;
}

.icon-btn-info-text span {
  color: var(--color-success);
  display: inline;
  font-weight: 800;
}

/******************************Form General ****************************/

.add-comp-brand-wrapper-info-wrapper {
  margin: 25px 0;
  font-size: 14px;
  display: flex;
  gap: 7px;
  align-items: center;
}

.add-comp-brand-wrapper-info-wrapper .icon-wrapper {
  color: var(--color-info);
  font-size: 20px;
}

.add-comp-brand-wrapper-info-wrapper .add_text {
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  color: var(--color-info);
}

/************************* SUbmitted Forms  *************************/
.submitted-forms-screen-header-wrapper {
  display: flex;
  gap: 15px;
}

.submitted-forms-cust-addr-wrapper {
  margin-bottom: 25px;
  display: flex;
}

.submitted-form-wrapper {
  padding: 5px;
  margin-bottom: 25px;
}

.submitted-form-wrapper .label {
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  margin-right: 10px;
}

.submitted-forms-cust .audit-form-section-subtitle {
  display: flex;
  justify-content: space-between;
}

.submitted-forms-cust .audit-form-section-subtitle label {
  font-size: 12px;
}

.submitted-form-wrapper {
  display: flex;
  justify-content: space-between;
}

.view-form-btn-wrapper {
  color: var(--color-info);
}
/*************************************** Loader  ****************************************/

.loader-wrapper-center-text {
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -45%);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loader-wrapper-center-text i {
  margin-top: 75px;
  font-weight: bold;
}
.spinner {
  font-size: 40px;
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
}

.spinner.center {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.spinner .spinner-blade {
  position: absolute;
  left: 0.4629em;
  bottom: 0;
  width: 0.074em;
  height: 0.2777em;
  border-radius: 0.0555em;
  background-color: transparent;
  -webkit-transform-origin: center -0.2222em;
  -ms-transform-origin: center -0.2222em;
  transform-origin: center -0.2222em;
  animation: spinner-fade9234 1s infinite linear;
}

.spinner .spinner-blade:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.spinner .spinner-blade:nth-child(2) {
  -webkit-animation-delay: 0.083s;
  animation-delay: 0.083s;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.spinner .spinner-blade:nth-child(3) {
  -webkit-animation-delay: 0.166s;
  animation-delay: 0.166s;
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.spinner .spinner-blade:nth-child(4) {
  -webkit-animation-delay: 0.249s;
  animation-delay: 0.249s;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.spinner .spinner-blade:nth-child(5) {
  -webkit-animation-delay: 0.332s;
  animation-delay: 0.332s;
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.spinner .spinner-blade:nth-child(6) {
  -webkit-animation-delay: 0.415s;
  animation-delay: 0.415s;
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

.spinner .spinner-blade:nth-child(7) {
  -webkit-animation-delay: 0.498s;
  animation-delay: 0.498s;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.spinner .spinner-blade:nth-child(8) {
  -webkit-animation-delay: 0.581s;
  animation-delay: 0.581s;
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

.spinner .spinner-blade:nth-child(9) {
  -webkit-animation-delay: 0.664s;
  animation-delay: 0.664s;
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.spinner .spinner-blade:nth-child(10) {
  -webkit-animation-delay: 0.747s;
  animation-delay: 0.747s;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.spinner .spinner-blade:nth-child(11) {
  -webkit-animation-delay: 0.83s;
  animation-delay: 0.83s;
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

.spinner .spinner-blade:nth-child(12) {
  -webkit-animation-delay: 0.913s;
  animation-delay: 0.913s;
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

@keyframes spinner-fade9234 {
  0% {
    background-color: #69717d;
  }

  100% {
    background-color: transparent;
  }
}
