/************ TABLE OF CONTENTS ***************

  Theme Default CSS
	Theme Header CSS

**********************************************/
/**----------------------------------------
START: Theme Default CSS
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  /**
     @Font-Family Declaration
   */
  --ts-ff-body: 'Poppins', sans-serif;
  --ts-ff-heading: 'Montserrat', sans-serif;
  --ts-ff-fontawesome: "Font Awesome 6 Pro";
  /**
     @Font-weight Declaration
   */
  --ts-fw-normal: normal;
  --ts-fw-thin: 100;
  --ts-fw-elight: 200;
  --ts-fw-light: 300;
  --ts-fw-regular: 400;
  --ts-fw-medium: 500;
  --ts-fw-sbold: 600;
  --ts-fw-bold: 700;
  --ts-fw-ebold: 800;
  --ts-fw-black: 900;
  /**
     @Font-Size Declaration
   */
  --ts-fs-body: 16px;
  --ts-fs-h1: 100px;
  --ts-fs-h2: 60px;
  --ts-fs-h3: 48px;
  --ts-fs-h4: 34px;
  --ts-fs-h5: 24px;
  --ts-fs-h6: 20px;
  /**
     @Color Declaration
   */
  --ts-color-common-white: #ffffff;
  --ts-color-common-black: #000000;
  --ts-color-heading-primary: #0e1733;
  --ts-color-text-body: #6b707f;
  --ts-color-theme-primary: #742e19;
  --ts-color-theme-bg: #f0f7fd;
  --ts-color-theme-bg-2: #edf1f3;
  --ts-color-border-1: #e5ebef;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

/**
  Typography CSS
*/
body {
  font-family: var(--ts-ff-body);
  font-size: var(--ts-fs-body);
  font-weight: normal;
  color: var(--ts-color-text-body);
  line-height: 1.5;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ts-ff-heading);
  color: var(--ts-color-heading-primary);
  margin-top: 0px;
  font-weight: var(--ts-fw-sbold);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: var(--ts-fs-h1);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  h1 {
    font-size: 90px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h1 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 56px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h1 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 38px;
  }
}

h2 {
  font-size: var(--ts-fs-h2);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  h2 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h2 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h2 {
    font-size: 46px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  font-size: var(--ts-fs-h3);
}

h4 {
  font-size: var(--ts-fs-h4);
}

h5 {
  font-size: var(--ts-fs-h5);
}

h6 {
  font-size: var(--ts-fs-h6);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: block;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  margin-bottom: 15px;
}
p b,
p strong {
  color: var(--ts-color-heading-primary);
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

a,
.btn,
button,
span,
p,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

a:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

button:hover,
a:hover {
  color: var(--ts-color-heading-primary);
}

a,
button {
  color: var(--ts-color-theme-primary);
  outline: none;
  border: none;
  text-decoration: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus,
button:focus:not(:focus-visible) {
  outline: 0;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--ts-color-theme-bg) var(--ts-color-common-white);
}

::-webkit-scrollbar {
  height: 4px;
  width: 6px;
  background: var(--ts-color-common-white);
}

::-webkit-scrollbar-thumb {
  background: var(--ts-color-theme-bg);
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

*::-moz-selection {
  background: var(--ts-color-common-black);
  color: var(--ts-color-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--ts-color-common-black);
  color: var(--ts-color-common-white);
  text-shadow: none;
}

::selection {
  background: var(--ts-color-common-black);
  color: var(--ts-color-common-white);
  text-shadow: none;
}

*::-webkit-input-placeholder {
  color: var(--ts-color-common-black);
  font-size: var(--ts-fs-body);
  opacity: 1;
}
*::-moz-placeholder {
  color: var(--ts-color-common-black);
  font-size: var(--ts-fs-body);
  opacity: 1;
}
*:-ms-input-placeholder {
  color: var(--ts-color-common-black);
  font-size: var(--ts-fs-body);
  opacity: 1;
}
*::-ms-input-placeholder {
  color: var(--ts-color-common-black);
  font-size: var(--ts-fs-body);
  opacity: 1;
}
*::placeholder {
  color: var(--ts-color-common-black);
  font-size: var(--ts-fs-body);
  opacity: 1;
}

/**
 	Common Classes CSS
*/
img {
  max-width: 100%;
}

.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

main,
.site-main {
  position: relative;
  z-index: 2;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-20 {
  margin-bottom: 20px;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .progress-wrap {
    right: 20px;
  }
  .progress-wrap.active-progress {
    bottom: 20px;
  }
}
@media (min-width: 1400px) {
  .container-fluid {
    max-width: 1740px;
  }
}
/**
  Buttons CSS
*/
.ts_btn {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  font-weight: var(--ts-fw-medium);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  padding: 15px 35px;
  border-radius: 6px;
  font-size: 15px;
  border: 1px solid var(--ts-color-theme-primary);
  letter-spacing: 0.4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ts_btn:hover {
  background-color: var(--ts-color-common-white);
  border-color: var(--ts-color-theme-primary);
  color: var(--ts-color-theme-primary);
}
.ts_btn.bordered {
  background-color: transparent;
  color: var(--ts-color-theme-primary);
  padding: 12px 20px;
}
.ts_btn.bordered:hover {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
}

/**----------------------------------------
START: Header CSS
----------------------------------------*/
.header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 9;
  background-color: var(--ts-color-common-white);
  border-bottom: 1px solid rgba(128, 128, 128, 0.13);
}

.site_logo .logo {
  display: inline-block;
  max-width: 175px;
  width: 100%;
  padding: 15px 0;
}

.header_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px 40px;
  list-style: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_menu ul li a {
  display: block;
  font-weight: var(--ts-fw-medium);
  color: var(--ts-color-heading-primary);
}
.header_menu ul li:hover a {
  color: var(--ts-color-theme-primary);
}

.offcanvas-toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: var(--ts-color-heading-primary);
}
.offcanvas-toggle i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.offcanvas-toggle:hover i {
  color: var(--ts-color-theme-primary);
}

.offcanvas_overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: var(--ts-color-common-black);
  z-index: 98;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.offcanvas_overlay.open {
  opacity: 0.5;
  visibility: visible;
}

.ts_offcanvas {
  background: var(--ts-color-common-white) none repeat scroll 0 0;
  position: fixed;
  top: 0;
  max-width: 400px;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99;
  overflow-y: scroll;
  padding: 30px;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.ts_offcanvas.open {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.ts_offcanvas .offcanvas_top {
  margin-bottom: 40px;
}
.ts_offcanvas .ts_need_work {
  position: inherit;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .ts_offcanvas {
    max-width: 350px;
    padding: 30px 15px;
  }
}

.offcanvas_logo {
  max-width: 175px;
  width: 100%;
}
.offcanvas_logo a {
  display: inline-block;
}

.offcanvas_close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 35px;
  line-height: 1;
  cursor: pointer;
  color: var(--ts-color-heading-primary);
}
.offcanvas_close i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.offcanvas_close:hover i {
  color: var(--ts-color-theme-primary);
}

.offcanvas_menu {
  margin-bottom: 30px;
}
.offcanvas_menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  border-bottom: 1px solid var(--ts-color-border-1);
}
.offcanvas_menu ul li {
  display: block;
  width: 100%;
}
.offcanvas_menu ul li a {
  display: block;
  width: 100%;
  padding: 15px 5%;
  font-size: 16px;
  line-height: 1;
  font-weight: var(--ts-fw-medium);
  text-align: left;
  color: var(--ts-color-heading-primary);
  border-top: 1px solid var(--ts-color-border-1);
  text-decoration: none;
  text-transform: uppercase;
}

/* !END: Header CSS */
/**----------------------------------------
START: Main Content CSS
----------------------------------------*/
.ts-docs-area {
  padding-top: 110px;
}

.ts_docs_sidebar {
  position: sticky;
  top: 100px;
}
.ts_docs_sidebar .sidebar_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--ts-color-common-white);
  background: var(--ts-color-theme-primary);
  padding: 13px 15px;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ts_docs_sidebar .sidebar_title {
    font-size: 14px;
  }
}
.ts_docs_sidebar .ts_docs_menu {
  list-style: none;
  padding-top: 10px;
  padding-bottom: 100px;
  overflow-y: scroll;
  height: 80vh;
  padding-right: 10px;
}
.ts_docs_sidebar .ts_docs_menu li {
  padding-right: 0;
  background-color: var(--ts-color-theme-bg);
  margin-bottom: 0;
  margin-top: 3px;
  position: relative;
  z-index: 1;
}
.ts_docs_sidebar .ts_docs_menu li .ts_progress_bar {
  position: absolute;
  background: rgba(221, 224, 224, 0.7);
  bottom: 0;
  left: 0;
  top: 0;
  z-index: -1;
}
.ts_docs_sidebar .ts_docs_menu li .icon {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  line-height: 1;
  top: 13px;
  right: 12px;
  cursor: pointer;
  color: var(--ts-color-heading-primary);
  z-index: 2;
}
.ts_docs_sidebar .ts_docs_menu li .icon i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.ts_docs_sidebar .ts_docs_menu li .icon .icon-minus {
  display: none;
}
.ts_docs_sidebar .ts_docs_menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 1.4;
  font-weight: var(--ts-fw-sbold);
  color: var(--ts-color-heading-primary);
  position: relative;
  padding: 13px 15px;
  padding-right: 35px;
}
.ts_docs_sidebar .ts_docs_menu li a:hover {
  color: var(--ts-color-theme-primary);
}
.ts_docs_sidebar .ts_docs_menu li.active > a {
  color: var(--ts-color-theme-primary);
}
.ts_docs_sidebar .ts_docs_menu li.opened .icon .icon-minus {
  display: block;
  color: var(--ts-color-theme-primary);
}
.ts_docs_sidebar .ts_docs_menu li.opened .icon .icon-plus {
  display: none;
}
.ts_docs_sidebar .ts_docs_menu li.opened ul {
  display: block;
}
.ts_docs_sidebar .ts_docs_menu li ul {
  padding-top: 15px;
  padding-bottom: 5px;
  background: var(--ts-color-common-white);
  position: relative;
  padding-left: 30px;
  margin-bottom: 0;
  padding-top: 12px;
  width: 100%;
  display: none;
}
.ts_docs_sidebar .ts_docs_menu li ul::before {
  content: "";
  width: 2px;
  bottom: 15px;
  background: var(--ts-color-theme-bg-2);
  position: absolute;
  top: 15px;
  left: 10px;
}
.ts_docs_sidebar .ts_docs_menu li ul li {
  padding: 0;
  margin: 15px 0;
  padding-left: 10px;
  list-style: none;
  background-color: transparent;
}
.ts_docs_sidebar .ts_docs_menu li ul li::before {
  content: "\f0da";
  font-family: var(--ts-ff-fontawesome);
  color: var(--ts-color-theme-primary);
  font-weight: var(--ts-fw-bold);
  top: 4px;
  left: -5px;
  position: absolute;
  font-size: 12px;
  line-height: 1;
}
.ts_docs_sidebar .ts_docs_menu li ul li a {
  font-size: 14px;
  font-weight: 400;
  padding: 0;
}
.ts_docs_sidebar .ts_docs_menu li ul li a:hover {
  color: var(--ts-color-theme-primary);
}
.ts_docs_sidebar .ts_docs_menu li ul li.active > a {
  color: var(--ts-color-theme-primary);
}

.ts_need_work {
  background-color: var(--ts-color-theme-bg);
  padding: 25px 20px;
  border-radius: 5px;
  position: sticky;
  top: 100px;
}
.ts_need_work .title {
  font-size: 18px;
  text-transform: capitalize;
  margin: 0;
}
.ts_need_work .desc {
  font-size: 14px;
  margin-top: 17px;
  margin-bottom: 0;
}
.ts_need_work .ts_btn {
  margin-top: 20px;
}

.item_info {
  background: var(--ts-color-theme-bg);
  padding: 30px 40px;
  margin-bottom: 35px;
}
.item_info ul li {
  color: var(--ts-color-heading-primary);
}
.item_info ul li:not(:last-child) {
  margin-bottom: 20px;
}
.item_info ul li strong {
  font-weight: 500;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .item_info {
    padding: 30px 20px;
  }
}

.ts_doc_section {
  margin-bottom: 50px;
}
.ts_doc_section a,
.ts_doc_section button {
  word-break: break-all;
}
.ts_doc_section > .title {
  font-size: 35px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ts_doc_section > .title {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
.ts_doc_section .desc p:last-child {
  margin: 0;
}
.ts_doc_section blockquote {
  border-radius: 0;
  border: none;
  border-left: 10px solid #ffe69c;
  color: var(--ts-color-heading-primary);
  padding: 30px 40px;
}
.ts_doc_section blockquote.alert-warning {
  border-color: #d49c00;
}
.ts_doc_section blockquote.alert-danger {
  border-color: #fa303e;
}
.ts_doc_section blockquote.alert-info {
  border-color: #087990;
}
.ts_doc_section blockquote p {
  line-height: 1.8;
}
.ts_doc_section blockquote p:last-child {
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ts_doc_section blockquote {
    padding: 30px 20px;
  }
}
.ts_doc_section iframe {
  max-width: 1000px;
  width: 100%;
  height: 500px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ts_doc_section iframe {
    max-width: 500px;
    height: 350px;
  }
}
.ts_doc_section .sub_section {
  margin-top: 30px;
}
.ts_doc_section .sub_section:not(:last-child) {
  margin-bottom: 35px;
}
.ts_doc_section .sub_section > .title {
  font-size: 25px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ts_doc_section .sub_section > .title {
    margin-bottom: 15px;
  }
}
.ts_doc_section .sub_section > .title_2 {
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.steps_style {
  -webkit-box-shadow: 0 3px 6px 0 rgba(4, 73, 89, 0.02);
          box-shadow: 0 3px 6px 0 rgba(4, 73, 89, 0.02);
  border: 1px solid var(--ts-color-border-1);
  border-radius: 3px;
  margin: 25px 0;
}
.steps_style ul {
  list-style: none;
  padding: 25px 20px;
}
.steps_style ul li {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  font-weight: var(--ts-fw-normal);
  color: var(--ts-color-heading-primary);
  z-index: 1;
}
.steps_style ul li:not(:last-child) {
  margin-bottom: 25px;
}
.steps_style ul.list_decimal li {
  padding-left: 40px;
  counter-increment: a;
}
.steps_style ul.list_decimal li p {
  margin-bottom: 10px;
}
.steps_style ul.list_decimal li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 20px;
  width: 1px;
  height: 110%;
  background-color: var(--ts-color-theme-primary);
  z-index: -1;
}
.steps_style ul.list_decimal li::before {
  content: counter(a);
  position: absolute;
  color: var(--ts-color-common-white);
  height: 32px;
  width: 32px;
  border-radius: 50%;
  font-weight: var(--ts-fw-medium);
  font-size: 12px;
  line-height: 1;
  background-color: var(--ts-color-theme-primary);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: -4px;
  left: -4px;
  border: 5px solid var(--ts-color-common-white);
  z-index: 1;
}

.step_item_wrpa {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 0;
}
.step_item_wrpa .step_item {
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 4px;
  background: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  position: relative;
  line-height: 1;
  margin-left: 5px;
}
.step_item_wrpa .step_item:not(:last-child) {
  margin-right: 30px;
}
.step_item_wrpa .step_item:not(:last-child)::before {
  content: "\f178";
  font-family: var(--ts-ff-fontawesome);
  position: absolute;
  right: -24px;
  color: var(--ts-color-theme-primary);
}

/* !END: Main Content CSS *//*# sourceMappingURL=main.css.map */