/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Changa:wght@200&display=swap");
@import url(http://fonts.googleapis.com/earlyaccess/droidarabickufi.css);
@-webkit-keyframes blinker {
  50% {
    opacity: 0;
  }
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/* helpers */
body {
  background-color: #ECEEF2;
  font-family: "Droid Arabic Kufi" , serif;
}

body.dark {
  background-color: #1C2733;
}

body #loader {
  border: 12px solid #f3f3f3;
  border-radius: 50%;
  border-top: 12px solid #444444;
  width: 70px;
  height: 70px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  z-index: 99999;
}

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

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

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

/* Start header */
.navbar {
  padding: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.navbar .custom-logo-link img {
  border-radius: 10px;
}

.navbar .navbar-brand {
  text-align: center;
  border-radius: 10px;
  padding: 5px;
  background-color: #931800;
  color: #fff;
  font-weight: bold;
  margin: 0;
}

.navbar .navbar-brand h1 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.navbar .navbar-brand:hover {
  background-color: #931800;
  color: #fff;
}

.navbar .navbar-toggler {
  font-size: 25px;
  background-color: #931800;
}

.navbar .navbar-toggler i {
  color: #fff;
}

.navbar .navbar-nav {
  font-size: 18px;
}

.navbar .navbar-nav .nav-link {
  color: #333;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.navbar .navbar-nav .nav-link:hover {
  color: #931800;
}

.navbar .social-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
}

.navbar .social-nav ul li {
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-size: 20px;
  border-radius: 5px;
  margin: 0 5px;
}

.navbar .social-nav ul li a, .navbar .social-nav ul li i {
  color: #fff;
}

.navbar .social-nav ul li.facebook {
  background-color: #4267B2;
}

.navbar .social-nav ul li.twitter {
  background-color: #1DA1F2;
}

.navbar .social-nav ul li.youtube {
  background-color: #c4302b;
}

.navbar .social-nav ul li.dark {
  background-color: #404040;
  cursor: pointer;
}

/* Dark header */
body.dark .navbar {
  background-color: #2a3b4d;
}

body.dark .navbar .navbar-brand {
  background-color: #1C2733;
}

body.dark .navbar .navbar-toggler {
  background-color: #1C2733;
}

body.dark .navbar .navbar-nav li a {
  color: #fff;
}

body.dark .navbar .navbar-nav li a:hover {
  color: #f80;
}

body.dark .navbar .navbar-nav li .dropdown-menu {
  background-color: #374d64;
}

body.dark .navbar .navbar-nav li .dropdown-menu a {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

body.dark .navbar .navbar-nav li .dropdown-menu a:hover {
  background-color: #405975;
}

/* Responsive dark header */
body.dark .navbar .navbar-nav li.nav-item {
  border-color: #1C2733;
}

/* Responsive header */
@media (max-width: 992px) {
  .navbar .navbar-brand h1 {
    font-size: 1.7rem;
    margin-bottom: 0px;
  }
  .navbar .navbar-brand span {
    font-size: 16px;
  }
  .navbar .navbar-nav {
    padding: 0 10px;
  }
  .navbar .navbar-nav li.nav-item {
    margin: 5px 0;
    border-bottom: 1px solid #ECEEF2;
  }
  .navbar .navbar-nav .social-nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
}

/* End header */
/* Start match table */
.match-table {
  text-align: center;
  background-color: #fff;
  border: 1px solid #ccc;
  margin: 15px auto;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.match-table .match-taps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #ECEEF2;
  border-bottom: 1px solid #ced3dd;
}

.match-table .match-taps .tap {
  background-color: #931800;
  color: #fff;
  padding: 8px;
  border-radius: 10px;
  display: block;
  margin: 10px;
  cursor: pointer;
}

.match-table .match-taps .tap.ys-day {
  background-color: #104783;
}

.match-table .match-taps .tap.tm-day {
  background-color: #CAA107;
}

.match-table .match-taps ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.match-table .match-content > div {
  display: none;
}

.match-table .match-content > div.active {
  display: block;
}

.match-table .match-content .matches {
  margin: 10px;
}

.match-table .match-content .matches .match {
  background-color: #ECEEF2;
  color: #333;
  padding: 8px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.match-table .match-content .matches .match:hover .match-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.match-table .match-content .matches .match a.match-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  display: none;
}

.match-table .match-content .matches .match .match-info {
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
}

.match-table .match-content .matches .match .match-info .match-state {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 17px;
}

.match-table .match-content .matches .match .match-info .match-state .match-time {
  margin-bottom: 10px;
}

.match-table .match-content .matches .match .match-info .match-state .state {
  background-color: #1C2733;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  margin: 0;
}

.match-table .match-content .matches .match .match-info .match-state .state.live {
  -webkit-animation: blinker 500ms ease-in-out infinite;
          animation: blinker 500ms ease-in-out infinite;
  background-color: #931800;
}

.match-table .match-content .matches .match .match-info .match-state .state.soon {
  background-color: #0f6f37 !important;
}

.match-table .match-content .matches .match .match-info .match-state .state.ended {
  background-color: #474747;
}

.match-table .match-content .matches .match .match-info .match-state .result {
  padding-bottom: 5px;
  margin: 0;
  font-size: 25px;
  font-weight: bolder;
  color: #333;
}

.match-table .match-content .matches .match .match-info .row > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.match-table .match-content .matches .match .match-info .row > div .team-img {
  overflow: hidden;
  padding: 0;
}

.match-table .match-content .matches .match .match-info .row > div .team-img img {
  width: 80px;
  height: 80px;
  display: block;
  margin: auto;
  border: 1px solid #1C2733;
  border-radius: 50%;
  padding: 2px;
}

.match-table .match-content .matches .match .match-info .row > div .team-name {
  padding: 0;
  font-weight: bold;
  margin: 0;
}

.match-table .match-content .matches .match .match-details p {
  margin: 0;
  padding: 8px;
  font-size: 15px;
}

.match-table .match-content .matches .match .match-details p i {
  padding-left: 5px;
}

.match-table .match-content .matches .no-matches {
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ECEEF2;
  border-radius: 10px;
  font-size: 25px;
  color: #474747;
}

/* dark match table */
body.dark .match-table {
  background-color: #2a3b4d;
  border-color: #131a23;
}

body.dark .match-table .match-taps {
  background-color: #18222c;
  border-color: #18222c;
}

body.dark .match-table .match-taps .tap {
  background-color: #2a3b4d;
  border-color: #2a3b4d;
}

body.dark .match-table .match {
  background-color: #1C2733 !important;
  color: #fff !important;
}

body.dark .match-table .match .match-info {
  border-color: #2e4054 !important;
}

body.dark .match-table .match .match-info .state {
  background-color: #2a3b4d !important;
}

body.dark .match-table .match .match-info .state.live {
  background-color: #931800 !important;
}

body.dark .match-table .match .match-info .state.soon {
  background-color: #0f6f37 !important;
}

body.dark .match-table .match .match-info .result {
  color: #fff !important;
}

body.dark .match-table .no-matches {
  background-color: #1C2733 !important;
  color: #ECEEF2 !important;
}

body.dark .match-table .match-details p i {
  color: #f80;
}

/* Responsive match table */
@media (max-width: 768px) {
  .match-table .match-content .matches .match .match-info {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .match-table .match-content .matches .match .match-info .row > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100px;
  }
  .match-table .match-content .matches .match .match-info .row > div .team-img {
    height: 100%;
    display: block;
  }
  .match-table .match-content .matches .match .match-info .row > div .team-img img {
    width: 60px;
    height: 100%;
    padding-bottom: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
  }
  .match-table .match-content .matches .match .match-info .row > div .team-name {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: block;
    line-height: 2;
  }
  .match-table .match-content .matches .match .match-info .row > div .state {
    font-size: 16px;
  }
  .match-table .match-content .matches .match .match-info .row > div .second-team .team-name {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

/* End match table */
/* Start box */
.box {
  text-align: center;
  background-color: #fff;
  border: 1px solid #ccc;
  margin: 15px auto;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.box-title {
  background: #ECEEF2;
  border-bottom: 1px solid #ced3dd;
  padding: 20px 10px;
  text-align: right;
}

.box-title span {
  background-color: #474747;
  color: #fff;
  padding: 8px;
  border-radius: 10px;
  margin: 10px;
}

.box-cards {
  padding: 10px;
}

.box-cards .card {
  margin-bottom: 10px;
}

.box-cards .card .card-img-top {
  height: 150px;
}

.box-cards .card .card-body {
  padding: 8px;
  text-align: right;
  font-size: 15px;
  background-color: #ECEEF2;
}

.box-cards .card .card-body a {
  color: #333;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.box-cards .card .card-body a:hover {
  color: #931800;
}

.box .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.box .pagination a {
  background-color: #ECEEF2;
  color: #333;
  padding: 8px;
  border-radius: 10px;
  margin: 10px;
  cursor: pointer;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.box .pagination a:hover {
  color: #931800;
}

.box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* dark box */
body.dark .box {
  background-color: #2a3b4d;
  border-color: #131a23;
}

body.dark .box-title {
  background-color: #18222c;
  border-color: #18222c;
}

body.dark .box-title span {
  background-color: #2a3b4d;
  border-color: #2a3b4d;
}

body.dark .box .box-cards .card {
  border-color: #1C2733 !important;
}

body.dark .box .box-cards .card-body {
  background-color: #1C2733;
}

body.dark .box .box-cards .card-body a {
  color: #fff;
}

body.dark .box .box-cards .card-body a:hover {
  color: #f80;
}

body.dark .box .pagination a {
  background-color: #1C2733;
  border-color: #1C2733;
  color: #fff;
}

body.dark .box .pagination a:hover {
  color: #f80;
}

/* End box */
/* Start single post */
.match-back {
  background: url("../images/match-back.jpg");
  border-radius: 10px;
  position: relative;
  padding: 30px;
  background-position: center;
  background-size: cover;
}

.match-back .back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  z-index: 99999;
  position: relative;
}

.match-back .back .vs {
  font-size: 6rem;
  font-weight: bold;
}

.match-back .back .team-img {
  width: 130px;
  height: 130px;
}

.match-back .back p.team-name {
  font-size: 22px;
  margin-top: 5px;
  font-weight: bold;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .match-back .back .vs {
    font-size: 3rem;
  }
  .match-back .back .team-img {
    width: 70px;
    height: 70px;
  }
  .match-back .back p.team-name {
    font-size: 18px;
  }
}

.post .box-title h2 {
  font-size: 26px;
  font-weight: bold;
  margin: 0;
}

.post .box-details {
  background: #ECEEF2;
  border-bottom: 1px solid #ced3dd;
  padding: 10px 10px;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #4d4d4d;
}

.post .box-details > div {
  padding: 0 10px;
}

.post .box-details > div a, .post .box-details > div span {
  color: #4d4d4d;
}

.post .box-details > div i {
  padding-left: 5px;
}

.post .box-content {
  padding: 10px;
}

.post .box-content .wp-post-image {
  display: block;
  margin: 10px auto;
  max-width: 100%;
}

.post .box-content img {
  max-width: 100%;
}

.post .box-content h2, .post .box-content h3, .post .box-content .conected-posts li {
  background-color: #ECEEF2;
  color: #333;
  padding: 5px;
  font-size: 20px;
  display: inline-block;
  border-radius: 5px;
  margin: 10px 0;
  font-weight: bold;
}

.post .box-content p {
  margin: 10px;
  line-height: 1.7;
  color: #333;
  font-size: 18px;
}

.post .box-content table {
  background-color: #ECEEF2;
  color: #333;
  font-size: 18px;
}

.post .box-content .conected-posts {
  margin: 0;
  padding: 0;
}

.post .box-content .conected-posts li {
  display: block !important;
}

.post .box-content .conected-posts li a {
  color: #931800;
  text-decoration: none;
  font-size: 18px;
  font-weight: normal;
}

.post .box-content .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background-color: #ECEEF2;
  padding: 10px;
}

.post .box-content .share a {
  background-color: #333;
  margin: 10px;
  padding: 8px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.post .box-content .share a.facebook {
  background-color: #3B5998;
}

.post .box-content .share a.twitter {
  background-color: #55ACEE;
}

.post .box-content .share a.whats {
  background-color: #5EAF2E;
}

.post .box-content .share a.telegram {
  background-color: #3CA2D9;
}

.post .box-content .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ECEEF2;
  padding: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0;
}

.post .box-content .tags a {
  background-color: #fff;
  margin: 10px;
  padding: 8px;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  display: block;
}

.post .box-content .live-box {
  text-align: center;
  margin: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #ECEEF2;
}

.post .box-content .live-box .live-taps {
  margin: 10px 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.post .box-content .live-box .live-taps li {
  background-color: #931800;
  color: #fff;
  padding: 8px;
  margin: 8px;
  min-width: 130px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.post .box-content .live-box .live-taps li:hover {
  background-color: #1C2733;
}

.post .box-content .live-box .live-taps li.active {
  background-color: #1C2733;
}

.post .box-content .live-box iframe {
  width: 100%;
  padding: 0 10px;
}

body.dark .post .box-title h2 {
  color: #fff;
}

body.dark .post .box-details {
  background-color: #1C2733;
  border-color: #18222c;
  color: #ECEEF2;
}

body.dark .post .box-details i {
  color: #666666;
}

body.dark .post .box-details a, body.dark .post .box-details span {
  color: #ECEEF2 !important;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

body.dark .post .box-details a:hover, body.dark .post .box-details span:hover {
  color: #f80 !important;
}

body.dark .post .box-content h2, body.dark .post .box-content h3 {
  background-color: #1C2733;
  color: #ECEEF2;
}

body.dark .post .box-content p {
  color: #ECEEF2;
}

body.dark .post .box-content table {
  background-color: #1C2733;
  border-color: #18222c !important;
  color: #ECEEF2;
}

body.dark .post .box-content .table-bordered td,
body.dark .post .box-content .table-bordered th {
  border-color: #18222c !important;
}

body.dark .post .box-content .conected-posts li {
  background-color: #1C2733;
}

body.dark .post .box-content .conected-posts li a {
  color: #ECEEF2;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

body.dark .post .box-content .conected-posts li a:hover {
  color: #f80;
}

body.dark .post .box-content .share {
  background-color: #1C2733;
}

body.dark .post .box-content .tags {
  background-color: #1C2733;
}

body.dark .post .box-content .tags a {
  background-color: #2a3b4d;
  color: #ECEEF2;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

body.dark .post .box-content .tags a:hover {
  color: #f80;
}

body.dark .post .box-content .live-box {
  background-color: #1C2733;
  border-color: #18222c;
}

body.dark .post .box-content .live-box li {
  background-color: #2a3b4d;
}

body.dark .post .box-content .live-box li.active {
  background-color: #e67a00;
}

body.dark .post .box-content .live-box li:hover {
  background-color: #e67a00;
}

@media (max-width: 768px) {
  .post .box-title h2 {
    font-size: 20px;
  }
  .post .box-details {
    font-size: 14px;
  }
  .post .box-content h2, .post .box-content h3 {
    font-size: 18px;
  }
  .post .box-content p {
    font-size: 16px;
  }
  .post .box-content table {
    font-size: 16px;
  }
  .post .box-content .share a {
    margin: 5px;
  }
}

/* End single post */
/* Start note */
.note {
  position: fixed;
  top: 35%;
  left: 35%;
  width: 375px;
  text-align: center;
  font-size: 20px;
  padding: 20px;
  z-index: 1111;
  display: none;
}

.note .alert {
  z-index: 111111;
}

.note .home-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 111111;
}

/* End note */
/* Start footer */
.main-footer {
  background-color: #fff;
  padding: 10px 0 0;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.main-footer .footer-column .widget-title {
  font-size: 26px;
  color: #333;
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
  width: 90%;
  padding-right: 10px;
  margin-bottom: 20px;
}

.main-footer .footer-column p {
  line-height: 1.7;
  color: #333;
  font-size: 16px;
  padding: 0 10px;
}

.main-footer .footer-column ul {
  margin-bottom: 0;
  padding: 0 10px 10px;
  list-style: none;
}

.main-footer .footer-column ul li {
  padding: 5px 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  font-size: 18px;
}

.main-footer .footer-column ul li:not(:last-child) {
  border-bottom: 0.1rem solid #ced3dd;
}

.main-footer .footer-column ul li a {
  color: #333;
  text-decoration: none;
}

.main-footer .footer-column ul li:hover {
  border-color: #931800;
}

.main-footer .footer-column ul li:hover a {
  color: #931800;
}

.main-footer .copyright {
  background-color: #ECEEF2;
  color: #333;
  line-height: 25px;
  padding: 15px 5px;
}

.main-footer .copyright .copy-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-footer .copyright .copy-cont p {
  margin: 0;
}

.main-footer .copyright .copy-cont p a {
  color: #333;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.main-footer .copyright .copy-cont p a:hover {
  color: #931800;
}

body.dark .main-footer {
  background-color: #2a3b4d;
}

body.dark .main-footer .widget-title {
  color: #fff;
  border-bottom: 1px solid #f80;
}

body.dark .main-footer p {
  color: #fff;
}

body.dark .main-footer ul li {
  border-color: #405975 !important;
}

body.dark .main-footer ul li a {
  color: #fff;
}

body.dark .main-footer ul li:hover {
  border-color: #f80 !important;
}

body.dark .main-footer ul li:hover a {
  color: #f80;
}

body.dark .main-footer .copyright {
  background-color: #1C2733;
}

body.dark .main-footer .copyright p a {
  color: #ECEEF2;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

body.dark .main-footer .copyright p a:hover {
  color: #f80;
}

/* End footer */
/*# sourceMappingURL=main.css.map */