/* Uptime.net.tr */
html, body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: "Inter";
  color: #1F1F1F;
  height: 100%;
}
html img, body img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
html a, body a {
  text-decoration: none;
  color: #E2643E;
}
html a:hover, body a:hover {
  color: #E2643E;
}
@media (min-width: 1400px) {
  html .container, body .container {
    max-width: 1300px;
  }
}

body {
  display: flex;
  flex-direction: column;
}

.utl-main {
  flex: auto;
}

/* Header */
.utl-navbar {
  padding: 35px 0;
  background-color: #F7F7F7;
}
@media (max-width: 992px) {
  .utl-navbar {
    padding: 20px 0;
  }
}
.utl-navbar .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 992px) {
  .utl-navbar .flex {
    gap: 0;
  }
}
.utl-navbar .flex .flex-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 35px;
}
@media (max-width: 1200px) {
  .utl-navbar .flex .flex-left {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .utl-navbar .flex .flex-left {
    justify-content: space-between;
    width: 100%;
  }
}
.utl-navbar .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
@media (max-width: 1200px) {
  .utl-navbar .logo {
    height: 40px;
  }
}
.utl-navbar .list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 1200px) {
  .utl-navbar .list {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .utl-navbar .list {
    display: none;
  }
}
.utl-navbar .list a {
  color: #1F1F1F;
  transition: 0.2s;
}
.utl-navbar .list a:hover {
  color: #E2643E;
}
.utl-navbar .list a.button {
  background-color: #E2643E;
  color: #fff;
  height: 42px;
  padding: 0 20px;
  font-weight: 500;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.utl-navbar .list a.button:hover {
  opacity: 0.8;
}
.utl-navbar .utl-toggle-mobile-menu {
  height: 44px;
  width: 44px;
  font-size: 22px;
}
@media (min-width: 992px) {
  .utl-navbar .utl-toggle-mobile-menu {
    display: none;
  }
}

.utl-mobile-menu {
  height: calc(100dvh - 84px);
  background-color: #f7f7f7;
  overflow-y: auto;
  padding: 20px 0;
  display: none;
}
.utl-mobile-menu .list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.utl-mobile-menu .list a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  padding: 2px 0;
  margin-bottom: 10px;
  text-align: center;
}

/* Head Area */
.utl-head-area {
  position: relative;
  background-color: #f7f7f7;
  padding-top: 50px;
  overflow: hidden;
  padding-bottom: 80px;
}
@media (max-width: 992px) {
  .utl-head-area {
    padding: 30px 0 40px 0;
  }
}
.utl-head-area::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 150px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  clip-path: polygon(100% 100%, 0% 100%, 100% 0);
}
.utl-head-area.minimal::after {
  height: 90px;
}
.utl-head-area .content {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .utl-head-area .content {
    margin-bottom: 40px;
  }
}
.utl-head-area .content .title {
  font-size: 54px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .utl-head-area .content .title {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .utl-head-area .content .title {
    font-size: 32px;
  }
}
.utl-head-area .content .title .alt {
  font-size: 45px;
  font-weight: 500;
  display: block;
}
@media (max-width: 1200px) {
  .utl-head-area .content .title .alt {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .utl-head-area .content .title .alt {
    font-size: 26px;
  }
}
.utl-head-area .content .subtitle {
  color: #E2643E;
  font-weight: 400;
  font-size: 32px;
  margin: 12px 0 20px 0;
}
@media (max-width: 1200px) {
  .utl-head-area .content .subtitle {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .utl-head-area .content .subtitle {
    font-size: 24px;
  }
}


.utl-head-area .content .comments-area {
  overflow: hidden;
  display: flex;
  position: relative;
}

.utl-head-area .content .comments-area::before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  background: linear-gradient(to left, transparent, #F7F7F7);
  z-index: 1;
}

.utl-head-area .content .comments-area::after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  background: linear-gradient(to left, #F7F7F7, transparent);
  z-index: 1;
}

.utl-head-area .content .comments-area:hover .comments-area-group {
  animation-play-state: paused;
}

.utl-head-area .content .comments-area > * {
  flex: 0 0 100%;
}

.utl-head-area .content .comments-area .comments-area-group {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  will-change: transform;
  animation: scrolling 20s linear infinite;
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.utl-head-area .content .comments-area .comment-item {
  background-color: #fff;
  border-radius: 6px;
  padding: 16px;
  min-width: 320px;
}

.utl-head-area .content .comments-area .comment-item .ci-user {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.utl-head-area .content .comments-area .comment-item .ci-user img {
  height: 30px;
  object-fit: contain;
}

.utl-head-area .content .comments-area .comment-item .ci-user .ci-name {
  font-size: 15px;
  font-weight: 500;
}

.utl-head-area .content .comments-area .comment-item .ci-user .ci-name-alt {
  font-size: 14px;
  color: #6c757d;
}

.utl-head-area .content .comments-area .comment-item .ci-text {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 24px;
}

.utl-head-area .content .comments-area .comment-item .ci-stars {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  color: #ff8220;
}


.utl-demo-area-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  z-index: 1;
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  padding: 8px;
}

.utl-demo-area-nav .utl-dan-link {
  flex: 1;
  border: 0;
  background-color: rgba(255, 255, 255, 0.5);
  color: #6c757d;
  height: 36px;
  font-size: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: 0.2s;
}

.utl-demo-area-nav .utl-dan-link.active, .utl-demo-area-nav .utl-dan-link:hover {
  background-color: #fff;
}


.swiper-utl-demo-title .title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--main);
}


.utl-demo-area {
  position: relative;
}
@media (max-width: 992px) {
  .utl-demo-area {
    max-width: 100%;
  }
}
.utl-demo-area-top {
  position: relative;
  max-width: 570px;
  margin-left: auto;
  z-index: 2;
}
.utl-demo-area-top::before {
  content: "";
  display: block;
  width: 108%;
  height: 103%;
  background-color: rgba(226, 100, 62, 0.1);
  position: absolute;
  top: -20px;
  left: -20px;
  border-radius: 12px;
}
@media (max-width: 1200px) {
  .utl-demo-area::before {
    left: -12px;
    top: -12px;
  }
}

.utl-da-item {
  background-color: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 20px;
  position: relative;
  transition: 0.3s;
}
.utl-da-item:hover {
  transform: scale(0.98);
}
.utl-da-item .server {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.utl-da-item .server .statu .circle {
  height: 24px;
  width: 24px;
  background-color: #00B37E;
  border-radius: 100%;
  position: relative;
}
@media (max-width: 1200px) {
  .utl-da-item .server .statu .circle {
    height: 20px;
    width: 20px;
  }
}
.utl-da-item .server .statu .circle::before {
  content: "";
  display: block;
  background-color: rgba(0, 179, 126, 0.3);
  height: 100%;
  width: 100%;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: ping 2s linear infinite;
}
.utl-da-item .features {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.utl-da-item .features .item-features {
  flex: 1;
  position: relative;
}
@media (max-width: 576px) {
  .utl-da-item .features .item-features {
    flex: auto;
  }
}
.utl-da-item .features .item-features:not(:first-child) {
  padding-left: 20px;
}
.utl-da-item .features .item-features:not(:first-child)::after {
  content: "";
  display: block;
  height: 60px;
  width: 1px;
  background-color: #EBEBEB;
  position: absolute;
  top: 0;
  left: 0;
}
.utl-da-item .features .item-features .key {
  font-size: 14px;
  color: #434343;
  margin-bottom: 4px;
}
@media (max-width: 1200px) {
  .utl-da-item .features .item-features .key {
    font-size: 12px;
  }
}
.utl-da-item .features .item-features .value {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
@media (max-width: 1200px) {
  .utl-da-item .features .item-features .value {
    font-size: 22px;
  }
}
.utl-da-item .features .item-features .value.status-text {
  font-size: 20px;
  margin-bottom: 5px;
  letter-spacing: 0;
}
.utl-da-item .features .item-features .value span {
  font-weight: 300;
}
.utl-da-item .features .item-features .badge-gray {
  background-color: #F8F8F8;
  font-size: 9px;
  color: #434343;
  padding: 4px;
  white-space: nowrap;
  border-radius: 4px;
  margin-right: 20px;
}
@media (max-width: 576px) {
  .utl-da-item .features .item-features .badge-gray {
    display: none;
  }
}
.utl-da-item.offline .statu .circle {
  background-color: #E53F3F;
}
.utl-da-item.offline .statu .circle::before {
  background-color: rgba(229, 63, 63, 0.3);
}

.utl-da-item.warning .statu .circle {
  background-color: #ECC94B;
}
.utl-da-item.warning .statu .circle::before {
  background-color: rgba(236, 201, 75, 0.3);
}

@keyframes ping {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}
/* Features 4 */
.utl-features-item {
  background-color: #fff;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  border-radius: 12px;
  padding: 40px;
}
@media (max-width: 768px) {
  .utl-features-item {
    padding: 24px;
  }
}
.utl-features-item .icon {
  height: 106px;
  margin-bottom: 20px;
}
.utl-features-item .title {
  font-size: 32px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .utl-features-item .title {
    font-size: 24px;
  }
}
.utl-features-item p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 30px;
  color: #585858;
}
@media (max-width: 768px) {
  .utl-features-item p {
    font-size: 16px;
    line-height: 26px;
  }
}

/* Notification Items */
.utl-notification-section {
  padding: 80px 0;
}

.utl-notification-item {
  text-align: center;
}
.utl-notification-item .img {
  width: 140px;
  margin: 0 auto 12px auto;
}
@media (max-width: 576px) {
  .utl-notification-item .img {
    width: 120px;
  }
}
.utl-notification-item .name {
  font-size: 24px;
  color: #E2643E;
}
@media (max-width: 576px) {
  .utl-notification-item .name {
    font-size: 18px;
  }
}

/* Features Section */
.utl-features-section {
  padding: 80px 0;
}
@media (max-width: 992px) {
  .utl-features-section {
    padding: 50px 0;
  }
}
@media (max-width: 992px) {
  .utl-features-section .img-section {
    margin: 20px 0;
  }
}
.utl-features-section .content .title {
  font-size: 50px;
  margin-bottom: 12px;
}
@media (max-width: 1200px) {
  .utl-features-section .content .title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .utl-features-section .content .title {
    font-size: 32px;
  }
}
.utl-features-section .content p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 30px;
  color: #585858;
  max-width: 550px;
}
@media (max-width: 768px) {
  .utl-features-section .content p {
    font-size: 16px;
    line-height: 26px;
  }
}

/* Pricing */
.utl-pricing-section {
  padding: 80px 0;
}
.utl-pricing-section .pricing-area .content-area {
  padding-left: 40px;
  padding-top: 120px;
}
@media (max-width: 992px) {
  .utl-pricing-section .pricing-area .content-area {
    padding-top: 30px;
    padding-left: 0;
  }
}
@media (max-width: 576px) {
  .utl-pricing-section .pricing-area .content-area {
    text-align: center;
  }
}
.utl-pricing-section .pricing-area .content-area .title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 2px;
}
@media (max-width: 1200px) {
  .utl-pricing-section .pricing-area .content-area .title {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .utl-pricing-section .pricing-area .content-area .title {
    font-size: 32px;
  }
}
.utl-pricing-section .pricing-area .content-area p {
  font-size: 36px;
  font-weight: 400;
}
@media (max-width: 576px) {
  .utl-pricing-section .pricing-area .content-area p {
    font-size: 26px;
  }
}

.utl-pricing-item {
  border: 1px solid #EBEBEB;
  padding: 32px;
  border-radius: 8px;
}
.utl-pricing-item .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.utl-pricing-item .head .img-icon {
  height: 45px;
}
.utl-pricing-item .head .title {
  font-size: 40px;
}
.utl-pricing-item .price-area {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.utl-pricing-item .price-area .price {
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
}
.utl-pricing-item .price-area .price .currency {
  font-weight: 300;
}
.utl-pricing-item .price-area .cycle {
  color: #797979;
  font-size: 24px;
  font-weight: 300;
}
.utl-pricing-item .btn {
  font-size: 16px;
}
.utl-pricing-item .features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.utl-pricing-item .features li {
  font-size: 18px;
}
.utl-pricing-item .features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 500;
  color: #E2643E;
  font-size: 22px;
  margin-right: 10px;
  position: relative;
  top: 2px;
}

/* Footer */
.utl-footer-jumbotron {
  background-color: rgba(226, 100, 62, 0.1);
  color: #E2643E;
  text-align: center;
  padding: 60px;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .utl-footer-jumbotron {
    padding: 40px;
    border-radius: 20px;
  }
}
@media (max-width: 576px) {
  .utl-footer-jumbotron {
    padding: 40px 30px;
  }
}
.utl-footer-jumbotron .subtitle {
  font-size: 32px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .utl-footer-jumbotron .subtitle {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .utl-footer-jumbotron .subtitle {
    font-size: 20px;
  }
}
.utl-footer-jumbotron .title {
  font-size: 50px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .utl-footer-jumbotron .title {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .utl-footer-jumbotron .title {
    font-size: 30px;
    margin-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .utl-footer-jumbotron .btn {
    height: 48px;
  }
}

.utl-footer .utl-links-area {
  padding: 40px 0 30px 0;
}
.utl-footer .footer-content {
  padding: 20px 0;
}
.utl-footer .footer-content .footer-title {
  font-weight: 500;
  margin-bottom: 10px;
}
.utl-footer .footer-content ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.utl-footer .footer-content ul li a {
  color: #1F1F1F;
  font-size: 17px;
  display: inline-block;
  transition: 0.2s;
}
.utl-footer .footer-content ul li a:hover {
  color: #E2643E;
}
.utl-footer .link-contact {
  background-color: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 14px 12px;
  border-radius: 6px;
  font-weight: 500;
  color: #1F1F1F;
  margin-bottom: 10px;
}
.utl-footer .link-contact img {
  height: 30px;
}
.utl-footer .footer-copyright {
  border-top: 1px solid #EBEBEB;
  padding: 30px 0;
}

/* General */
.utl-section {
  padding: 80px 0;
}

.utl-section-head {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .utl-section-head {
    margin-bottom: 30px;
  }
}
.utl-section-head .title {
  font-size: 45px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .utl-section-head .title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .utl-section-head .title {
    font-size: 32px;
  }
}

.utl-section-head-2 {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .utl-section-head-2 {
    margin-bottom: 30px;
  }
}
.utl-section-head-2 .title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .utl-section-head-2 .title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .utl-section-head-2 .title {
    font-size: 32px;
  }
}
.utl-section-head-2 p {
  font-size: 35px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .utl-section-head-2 p {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .utl-section-head-2 p {
    font-size: 18px;
  }
}

.divider-border {
  background-color: #DEDEDE;
  height: 1px;
  width: 100%;
}

/* General */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

.btn {
  box-shadow: none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  height: 48px;
  font-size: 15px;
  padding: 4px 22px;
  border-radius: 8px;
  font-weight: 500;
  gap: 8px;
}
.btn.btn-icon {
  width: 42px;
  min-width: 42px;
  padding: 0;
  text-align: center;
}
.btn.btn-sm {
  height: 34px;
  padding: 2px 12px;
  border-radius: 6px !important;
}
.btn.btn-link {
  text-decoration: none;
  color: #212A3E;
}
.btn.btn-main {
  background-color: #E2643E;
  color: #fff;
}
.btn.btn-main:hover, .btn.btn-main:focus {
  background-color: #cc3728;
  color: #fff;
  border-color: #cc3728;
}
.btn.btn-opacity-main {
  background-color: rgba(226, 100, 62, 0.1);
  color: #E2643E;
}
.btn.btn-opacity-main:hover, .btn.btn-opacity-main:focus {
  background-color: #cc3728;
  color: #fff;
  border-color: #cc3728;
}
.btn.btn-outline-main {
  background-color: transparent;
  color: #E2643E;
  border: 1px solid #E2643E;
}
.btn.btn-outline-main:hover, .btn.btn-outline-main:focus {
  background-color: #E2643E;
  color: #fff;
  border-color: #E2643E;
}
.btn.btn-gray {
  background-color: #EFEFEF;
  color: #1F1F1F;
}

.form-label {
  font-size: 15px;
  font-weight: 600;
}
.form-label.text-special {
  color: #656565;
}

.form-control, .form-select {
  box-shadow: none !important;
  border-color: #E2E2E2;
  height: 42px;
  font-size: 15px;
}
.form-control:hover, .form-control:focus, .form-select:hover, .form-select:focus {
  border-color: rgba(226, 100, 62, 0.4);
}
.form-control::placeholder, .form-select::placeholder {
  color: rgba(31, 31, 31, 0.5);
  font-size: 15px;
}

.form-select {
  box-shadow: none !important;
  cursor: pointer;
}

textarea.form-control {
  height: auto;
}

.form-check-input {
  height: 18px;
  width: 18px;
  border-color: #E2E2E2;
  border-radius: 4px;
  box-shadow: none !important;
}
.form-check-input:checked {
  background-color: #E2643E;
  border-color: #E2643E;
}

.form-check-label {
  margin-left: 2px;
  font-size: 14px;
  position: relative;
  top: 1px;
}

.dropdown-menu .dropdown-item:focus {
  background-color: #E2643E;
}

.fs-18 {
  font-size: 18px;
}

.fs-16 {
  font-size: 16px;
}

.fs-15 {
  font-size: 15px;
}

.fs-14 {
  font-size: 14px;
}

.text-main {
  color: #E2643E;
}

.dropdown-menu .dropdown-item {
  font-size: 15px;
}

.white-space-nowrap {
  white-space: nowrap;
}

.list-group-item.active {
  background-color: #E2643E;
  border-color: #E2643E;
}

.list-group-overflow {
  white-space: nowrap;
  overflow-x: auto;
  font-size: 15px;
}

.badge {
  font-weight: 400;
  font-size: 14px;
}
.badge.bg-gray {
  background-color: #F8F8F8;
  color: #434343;
}

.text-success {
  color: #00B37E !important;
}

.text-danger {
  color: #E53F3F !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.h-50px {
  height: 50px;
}

.h-52px {
  height: 50px;
}


.utl-contact-page {
  padding: 50px 0;
}

.utl-contact-page form .form-control {
  height: 50px;
}

.utl-contact-page form textarea.form-control {
  height: auto;
}

.utl-contact-page form label {
  font-size: 15px;
  margin-bottom: 6px;
  color: #6c757d;
}

.utl-contact-page form .btn {
  height: 50px;
  font-size: 16px;
}

.utl-contact-page .form-area {
  padding-right: 60px;
}

.utl-contact-item {
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 16px;
  margin-bottom: 14px;
}

.utl-contact-item .icon {
  font-size: 32px;
  width: 40px;
  text-align: center;
}

.utl-contact-item .ctx {
  color: #6c757d;
}

.utl-contact-item .ctx .value {
  font-size: 18px;
  font-weight: 500;
  color: #1f1f1f;
}

@media (max-width: 992px) {
  .utl-contact-page .form-area {
    padding-right: 0;
    margin-bottom: 30px;
  }
}

.utl-map {
  border-radius: 30px;
  overflow: hidden;
  margin-top: 50px;
}


/* Locations */
.utl-locations-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-gap: 20px;
}

.utl-location-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  background-color: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 12px;
}

.utl-location-item img {
  height: 40px;
}


.utl-da-item.large {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #ebebeb;
  max-width: 1100px;
  margin: 12px auto;
  padding: 15px 20px;
}

.utl-da-item.large .features .item-features .value {
  font-size: 22px;
}

.utl-da-item.large .features {
  width: 70%;
}

.utl-da-item.large .server {
  margin-bottom: 0 !important;
  font-size: 18px;
}

.utl-da-item.large .server .ctx .name {
  margin-top: 6px;
}

.utl-da-item.large .server .statu .circle {
  height: 18px;
  width: 18px;
}


.utl-leaderboard-content {
  margin-top: -100px;
  position: relative;
}


.utl-leaderboard-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.utl-leaderboard-tabs .link {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  height: 40px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid #ebebeb;
  color: #1f1f1f;
  transition: 0.2s;
}

.utl-leaderboard-tabs .link.active, .utl-leaderboard-tabs .link:hover {
  background-color: #E2643E;
  color: #fff;
}

.utl-notification-item.disabled{
  position: relative;
}

.utl-notification-item.disabled img, .utl-notification-item.disabled .name{
  filter: blur(0.5px);
}

.soon-label {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ffc107;
  color: #000;
  font-weight: bold;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 10;
}

/*# sourceMappingURL=style.css.map */
