.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
@media (min-width: 1440px) {
  .container {
    width: 100%;
    max-width: 1380px;
  }
}
html {
  font-size: 20px;
}

body {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  background: #1E2027;
  color: white;
}

.row:not(.g-0) {
  margin-right: -10px;
  margin-left: -10px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.row:not(.g-0) > * {
  padding-left: 10px;
  padding-right: 10px;
}

a,
.nav-link {
  transition: 0.3s;
  color: white;
  text-decoration: none;
}
a:hover, a:focus,
.nav-link:hover,
.nav-link:focus {
  text-decoration: unset;
  color: inherit;
}

img {
  max-width: 100%;
}

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

.color {
  color: var(--main-color);
}

:root {
  --main-color: #FE6F27;
  --main-bg-btn: #18C366;
  --color-btn: #030A22;
  --color2: #0EE8E8;
  --color3: #FFD608;
  --color-red: #CC211E;
  --color-y: #FFCD08;
  --color-sub: #67696F;
  --bg-color: #131A1A;
  --border-color: #3B3B3B;
  --code-font-size: 14px;
  --code-line-height: 1.4;
  --scroll-bar-color: #c5c5c5;
  --scroll-bar-bg-color: #f6f6f6;
}

pre {
  color: var(--code-color);
  font-size: var(--code-font-size);
  line-height: var(--code-line-height);
  background-color: var(--code-bg-color);
}

::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0.5);
}

::-moz-placeholder {
  color: #67696F;
}

::placeholder {
  color: #67696F;
}

/* Works on Chrome, Edge, and Safari */
.content-intro::-webkit-scrollbar {
  width: 2px;
}

.content-intro::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 20px;
  border: 2px solid var(--main-color);
  background-clip: content-box;
}

.btn {
  background: var(--main-bg-btn);
  border-radius: 12px;
  color: var(--color-btn);
  line-height: 20px;
  padding: 8px 14px;
  border: 0;
  font-size: 12px;
  transition: 0.2s;
  text-transform: capitalize;
  font-weight: 700;
  box-shadow: 0px 2px 4px 0px rgba(40, 40, 40, 0.38) inset;
}
.btn:hover, .btn:focus {
  box-shadow: inset 3px 4px 25px rgba(0, 0, 0, 0.3);
  color: var(--color-btn);
}
.btn.active, .btn.active:hover, .btn.active:focus {
  color: #fff;
  background: var(--main-color);
}
.btn.btn-odds-detail {
  background: #2D2C32;
  color: #fff;
}
.btn.btn2 {
  background: var(--main-color);
}

i {
  font-size: 24px;
  line-height: 1;
  display: inline-block;
}

.box {
  border-radius: 8px;
  background: var(--bg-color);
}

/* Header */
.navbar {
  padding: 0;
}

.navbar-nav {
  gap: 60px;
}
.navbar-nav .nav-link {
  color: var(--color-sub);
  font-size: 14px;
  text-transform: capitalize;
  text-align: center;
  padding: 28px 0 0;
  margin-bottom: 28px;
  position: relative;
}
.navbar-nav .nav-link::before {
  content: "";
  display: none;
  width: 16px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='7' viewBox='0 0 16 7' fill='none'%3E%3Cpath d='M0 1.921V0H16V1.921C16 3.17153 15.2243 4.29089 14.0534 4.72999L9.05337 6.60499C8.37422 6.85967 7.62579 6.85967 6.94663 6.60499L1.94663 4.72999C0.775719 4.29089 0 3.17153 0 1.921Z' fill='%23FE6F27'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
  color: var(--main-color);
}
.navbar-nav .nav-link.active {
  font-weight: 700;
}
.navbar-nav .nav-link.active::before {
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

#m-tele {
  background: var(--color2);
}

#m-bet {
  background: var(--color3);
}

#user-display {
  margin-left: 8px;
}
#user-display a {
  display: block;
}

.list-header {
  background: #22252D;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 35px;
  justify-content: center;
}
.list-header a {
  color: #9497A4;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.list-header a::after {
  content: "";
  position: absolute;
  width: 0;
  bottom: 0;
  transition: 0.2s;
  height: 3px;
  background-color: var(--main-color);
}
.list-header a.active, .list-header a:hover {
  color: #fff;
}
.list-header a.active::after, .list-header a:hover::after {
  width: 100%;
}

.offcanvas-start {
  border: 0;
  background-color: rgb(30, 32, 39);
  max-width: 80%;
}

.offcanvas-body {
  padding: 40px 0;
}

.search-box {
  border-radius: 12px;
  padding: 8px;
  padding-left: 12px;
  background: #292C33;
  display: grid;
  align-items: center;
  grid-template-columns: max-content auto 1fr auto;
}
.search-box .form-select {
  padding: 0 14px;
  margin: 0 14px;
  border: 0;
  border-left: 1px solid #46474B;
  border-right: 1px solid #46474B;
  width: auto;
  background: transparent;
  border-radius: 0;
  color: #67696F;
  font-size: 14px;
}
.search-box .form-control {
  padding: 0;
  background: transparent;
  color: #67696F;
  border: 0;
  font-size: 14px;
}
.search-box .form-control:focus {
  box-shadow: none;
}

/* Body */
#main-content {
  padding-bottom: 68px;
}

section {
  padding-bottom: 50px;
}

.page-title {
  padding: 28px 0 24px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
}
.page-title a {
  color: var(--color-sub);
}
.page-title .breadcrumb_last {
  color: var(--main-color);
  font-weight: 700;
  display: flex;
  align-items: center;
}
.page-title span + span::before {
  content: "";
  background: var(--main-color);
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  margin: 0 8px;
}

.topmain {
  background: url(../images/bg-top.jpg) no-repeat;
  background-size: cover;
  padding: 24px 0 85px;
  position: relative;
}
.topmain::after {
  content: "";
  background: linear-gradient(180deg, rgba(30, 32, 39, 0) 0%, #1E2027 100%);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 193px;
  left: 0;
  pointer-events: none;
  z-index: 11;
}

.topmain .sda-rennab {
  margin-top: -24px;
  z-index: 99;
}

.sda-rennab {
  width: 100%;
  display: grid;
  justify-content: center;
  gap: 4px;
  grid-template-columns: 1fr 1fr;
}

.title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin: 0 0 30px;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.title::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #36373A;
}
.title span {
  padding-right: 12px;
  background: #1E2027;
  z-index: 11;
  position: relative;
  text-transform: uppercase;
}

.match_section .title {
  margin-bottom: 10px;
}

.view-all {
  font-size: 14px;
  color: var(--main-color);
  background-color: #1E2027;
  padding-left: 12px;
  position: relative;
  z-index: 11;
}

.grid-matches {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.grid-matches__item {
  position: relative;
  margin-bottom: 6px;
}

.grid-match {
  border-radius: 12px;
  box-shadow: 0 0 0 1.5px #4E4E4E;
  position: relative;
  overflow: hidden;
}

.bg-match {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.grid-match--is-hot {
  box-shadow: 0 0 0 1.5px rgba(255, 164, 92, 0.3);
}
.grid-match--is-hot::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../images/bg-item-h.png) no-repeat;
  pointer-events: none;
  border-radius: 12px;
}
.grid-match--is-hot .grid-match__footer::before {
  box-shadow: 0 0 0 0.5px rgba(255, 164, 92, 0.3);
}

.grid-match__body {
  padding: 20px;
  display: block;
  position: relative;
  z-index: 1;
}

.grid-match__league {
  text-align: center;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 14px;
}

.grid-match__main {
  display: flex;
}

.grid-match__team-logo {
  width: 60px;
  height: 60px;
}

.grid-match__team {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  flex: 1;
  align-items: center;
}

.grid-match__team--name {
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  max-width: 140px;
}

.grid-match__status {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 13px;
}

.grid-match__vs {
  font-size: 20px;
  font-weight: 700;
}

.time-loaded {
  font-size: 12px;
  font-weight: 400;
  color: var(--main-bg-btn);
}

.is-live {
  position: absolute;
  top: -12px;
  left: 16px;
  z-index: 1;
}

.badge-live {
  border-radius: 12px;
  background: #292C33;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  padding: 6px 12px;
  line-height: 20px;
}

.grid-match__before .gname {
  justify-content: center;
}

.grid-match__footer {
  padding: 20px;
  position: relative;
  gap: 12px;
  align-items: center;
  z-index: 1;
}
.grid-match__footer::before {
  content: "";
  box-shadow: 0 0 0 0.5px #4E4E4E;
  height: 0;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.grid-match__commentator {
  color: #CED0D8;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: capitalize;
}

.grid-match__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.style2 {
  padding-top: 15px;
  width: calc(100% + 40px);
}
.style2 .grid-matches__item {
  margin: 2px;
  height: calc(100% - 2px);
}
.style2 .grid-match {
  height: calc(100% - 2px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.style2 .grid-match__league {
  flex: 1;
  margin: 0;
  max-width: 80%;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  font-size: 12px;
  color: #CED0D8;
  text-align: left;
}
.style2 .time-loaded {
  font-size: 14px;
}
.style2 .grid-match__main {
  flex-direction: column;
  gap: 12px;
  position: relative;
  flex: 1;
  justify-content: center;
}
.style2 .grid-match__status {
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  margin: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.style2 .grid-match__team {
  flex-direction: row;
  justify-content: space-between;
}
.style2 .grid-match__team-logo {
  width: 36px;
  height: 36px;
}
.style2 .grid-match__vs {
  font-size: 16px;
}
.style2 .grid-match__body {
  padding: 32px 20px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.style2 .btn {
  padding: 8px 10px;
}
.style2 .grid-match__commentator {
  max-width: 120px;
  line-height: 20px;
}
.style2 .grid-match__footer {
  gap: 8px;
}
.style2:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
}

.swiper-slide {
  height: auto;
}

.gname {
  display: flex;
  align-items: center;
  gap: 12px;
}

.swiper-button-next {
  right: 0;
  height: calc(100% - 15px);
  width: 77px;
  background: linear-gradient(270deg, #292B34 0%, rgba(41, 43, 52, 0) 100%);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  color: #fff;
  top: 15px;
  margin: 0;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
}
.swiper-button-next::after {
  font-size: 20px;
}

.news-title {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  margin: 14px 0 5px;
  padding-top: 12px;
  border-top: 1px solid #46474B;
}

.news-info {
  color: #9497A4;
  font-size: 12px;
  line-height: 20px;
}

.news-info {
  display: flex;
}

.news-cat {
  display: flex;
  align-items: center;
}
.news-cat::before {
  content: "";
  height: 1px;
  width: 19px;
  background: #9497A4;
  margin-right: 6px;
}
.news-cat::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9497A4;
  margin: 0 10px;
}

.box-news .swiper-button-next {
  top: 0;
  height: 100%;
}

h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.navigation-link {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.navigation-link a {
  color: #9497A4;
  font-size: 16px;
  line-height: 24px;
}
.navigation-link a:hover {
  color: var(--main-color);
}
.navigation-link .active a {
  color: var(--main-color);
}
.navigation-link .active a {
  font-weight: 700;
}

.single-sport .grid-matches {
  padding: 0;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.filter-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.filter-tags__day {
  display: flex;
  align-items: center;
  gap: 16px;
}
.filter-tags__day a {
  border-radius: 12px;
  border: 1px solid transparent;
  background: #292C33;
  padding: 4px;
  color: #9497A4;
  position: relative;
  display: flex;
  gap: 6px;
  align-items: center;
  text-align: center;
  text-transform: capitalize;
}
.filter-tags__day a:hover {
  color: var(--main-color);
  border-color: var(--main-color);
  background: rgba(254, 111, 39, 0.07);
}
.filter-tags__day a:not(.today) {
  max-width: 50px;
}
.filter-tags__day a.active {
  color: #fff !important;
}
.filter-tags__day a.today {
  padding: 8px 12px;
}
.filter-tags__day a .count {
  font-size: 12px;
  min-width: 20px;
  border-radius: 10px;
  background-color: var(--main-color);
  position: absolute;
  top: -10px;
  right: -10px;
  text-align: center;
  height: 20px;
  line-height: 20px;
}

.form-search {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  background-color: #292C33;
  color: #9497A4;
}
.form-search .form-control {
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  box-shadow: none !important;
  color: inherit;
}

.tourz {
  background-color: #23252E;
  margin-bottom: 20px;
}
.tourz li {
  padding: 20px;
}
.tourz li.league_title {
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.tourz li:nth-child(odd) {
  background-color: #292B34;
}
.tourz .match--odd {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tourz .match__time {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}
.tourz .time-loaded {
  font-size: inherit;
}
.tourz .match__commentator {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-transform: capitalize;
  display: flex;
  gap: 10px;
  align-items: center;
}
.tourz .team__logo {
  width: 32px;
  height: 32px;
}
.tourz .match__teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1;
  font-weight: 600;
}
.tourz .match__ts {
  min-width: 60px;
  display: flex;
  gap: 6px;
  justify-content: center;
  font-weight: 700;
}
.tourz .match__team {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
  min-width: 100px;
}
.tourz .match__team.team--home {
  flex-direction: row-reverse;
}

.vertical {
  margin-top: 16px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.vertical .news-thumb {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #46474B;
}
.vertical .news-thumb img {
  max-width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
}
.vertical .news-title {
  padding: 0;
  margin-top: 0;
  border: 0;
}

.top-match_detail {
  background: url(../images/bg-topmatch.png) no-repeat;
  background-size: cover;
  padding: 20px 0 25px;
  height: 100%;
}
.top-match_detail .xitem-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.top-match_detail .grid-match__main {
  justify-content: center;
  gap: 16px;
}
.top-match_detail .grid-match__team {
  flex: unset;
  flex-direction: row;
  font-size: 18px;
  text-transform: uppercase;
}
.top-match_detail .grid-match__team.team--home {
  flex-direction: row-reverse;
}
.top-match_detail .grid-match__team .grid-match__team--name {
  font-weight: 700;
}
.top-match_detail .grid-match__status {
  margin: -7px 0 0;
  gap: 4px;
}
.top-match_detail .grid-match__team-logo {
  width: 68px;
  height: 68px;
}
.top-match_detail .grid-match__vs {
  font-size: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-match_detail .grid-match__vs span:not(.xspace) {
  min-width: 50px;
}
.top-match_detail .grid-match__vs .home {
  text-align: right;
}
.top-match_detail .time-loaded {
  font-size: 14px;
}

.match-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.match-links a {
  padding: 4px 12px;
  display: flex;
  gap: 4px;
  align-items: center;
  text-transform: uppercase;
  border-radius: 12px;
  background: #292C33;
  color: #CED0D8;
}
.match-links a::before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http: //www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M5.1957 17.189C4.95587 17.1886 4.72028 17.1257 4.51211 17.0066C4.04336 16.741 3.75195 16.2254 3.75195 15.6656V4.33747C3.75195 3.77614 4.04336 3.26208 4.51211 2.99646C4.72524 2.87397 4.96735 2.81098 5.21315 2.81407C5.45894 2.81717 5.6994 2.88623 5.90938 3.01403L15.591 8.80935C15.7928 8.93586 15.9591 9.11156 16.0744 9.31995C16.1897 9.52833 16.2502 9.76259 16.2502 10.0008C16.2502 10.2389 16.1897 10.4732 16.0744 10.6816C15.9591 10.8899 15.7928 11.0656 15.591 11.1922L5.90781 16.989C5.69293 17.1189 5.4468 17.1881 5.1957 17.189Z" fill="#CED0D8"/></svg>');
  width: 20px;
  height: 20px;
}

.btn-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.btn-control .group-btn-c {
  display: flex;
  gap: 8px;
}
.btn-control .btn-tab {
  padding: 8px;
  background-color: #292C33;
  border-radius: 12px;
}

.vb-player img {
  width: 100%;
}

.player__right {
  background-color: #1B1D23;
  overflow: hidden;
  height: 100%;
}
.player__right .tab {
  background: #23252E;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.player__right .tab .tablinks {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-bottom: 2px solid transparent;
  color: #9497A4;
  line-height: 24px;
  padding: 10px;
  text-transform: capitalize;
}
.player__right .tab .tablinks.active {
  color: var(--main-color);
  font-weight: 600;
  border-color: var(--main-color);
}
.player__right .tab .tablinks:hover {
  color: var(--main-color);
}
.player__right .tabcontent {
  display: none;
  background: #282828;
  min-height: 460px;
  height: 100%;
}
.player__right .tabcontent.active {
  display: block;
}

.require-login {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 125px;
  z-index: 9;
  background: rgb(58, 61, 68);
  background: linear-gradient(0deg, rgba(58, 61, 68, 0.95) 0%, rgba(58, 61, 68, 0.95) 80%, rgba(58, 61, 68, 0) 100%);
}
.require-login a {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 40%;
  text-align: center;
  transform: translateY(-50%);
  color: #fff !important;
  cursor: pointer;
}

.chatbox_cover {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}
.chatbox_cover .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  background: #dbae79 !important;
  color: #000;
  border-radius: 20px;
  font-size: 14px;
}
.chatbox_cover::before {
  content: "";
  background-color: #1d1e22;
  background-image: url(../images/chat-hide.jpg);
  background-size: contain;
  background-position: left center;
  background-repeat: repeat-y;
  z-index: 2;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}

.chatboxi {
  height: 100%;
}

.title_head {
  padding-bottom: 28px;
}
.title_head h2 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.title_head .title_box {
  display: flex;
  gap: 32px;
  align-items: center;
}
.title_head .commentator {
  display: flex;
  align-items: center;
  gap: 12px;
}
.title_head .commentator img {
  width: 44px;
  height: 44px;
}
.title_head .commentator span {
  color: #9497A4;
}
.title_head .commentator strong {
  display: block;
  color: #fff;
}
.title_head .tc-social {
  display: flex;
  gap: 20px;
}
.title_head .tc-social a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.box_info-match {
  background-color: #23252E;
  color: #CED0D8;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 50px;
}
.box_info-match span {
  display: flex;
  gap: 8px;
  align-items: center;
}
.box_info-match strong {
  color: #fff;
}

#relate {
  width: 100%;
}

.modal-content {
  background: url(../images/bg-modal.png) no-repeat;
  background-size: cover;
  border: 0;
  border-radius: 12px;
  padding: 20px;
  color: #9497A4;
}
.modal-content .modal-header {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  border: 0;
  color: var(--main-color);
  padding: 0;
  margin-bottom: 12px;
}
.modal-content .modal-body {
  padding: 0;
}
.modal-content .modal-title {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
  text-transform: capitalize;
}
.modal-content .login-btn {
  text-align: center;
  margin-top: 18px;
}
.modal-content .google-btn {
  padding: 8px 12px;
  border: 1px solid var(--main-color);
  border-radius: 12px;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  text-transform: capitalize;
}

.new-lastest .vertical {
  margin: 0 0 16px;
}

.lastest-watch {
  height: 100%;
}
.lastest-watch .new-content {
  display: flex;
  height: 100%;
  position: relative;
  padding-left: 115px;
}
.lastest-watch .news-thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lastest-watch .new-bottom {
  position: absolute;
  bottom: 32px;
  left: 0;
  background: rgba(35, 37, 46, 0.8);
  padding: 24px 28px;
  max-width: 350px;
}
.lastest-watch .news-title {
  border: 0;
  margin-top: 0;
  padding-top: 0;
}

/* Footer */
#footer {
  padding: 32px 0 55px;
  background: url(../images/bg-footer.jpg) no-repeat;
  background-size: cover;
}/*# sourceMappingURL=style.css.map */