*,
html,
body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html,
body {
  height: 100%;
}

.f-mulish {
  font-family: "Mulish", sans-serif;
}

hr {
  border: 0.7px solid rgb(0, 0, 0);
  opacity: 1;
}

.not-visible {
  display: none !important;
}

.c-bg-dark {
  background-color: rgb(0, 0, 0);
}

.c-bg-stars {
  background-image: url('../img/stars.svg');
  background-size: cover;
  background-position: center;
}

.preloader {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
  width: 100vw;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  }
  .preloader > *:not(:last-child) {
    margin-bottom: 5px;
  }
 .preloader div p {
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
  }
  .preloader .line {
    width: 1px;
    height: 12px;
    background: rgb(255, 255, 255);
    margin: 0 1px;
    display: inline-block;
    -webkit-animation: opacity 1000ms infinite ease-in-out;
            animation: opacity 1000ms infinite ease-in-out;
  }
  .preloader .line-1 { 
    -webkit-animation-delay: 800ms; 
            animation-delay: 800ms;
  }
  .preloader .line-2 { 
    -webkit-animation-delay: 600ms; 
            animation-delay: 600ms;
  }
  .preloader .line-3 { 
    -webkit-animation-delay: 400ms; 
            animation-delay: 400ms;
  }
  .preloader .line-4 { 
    -webkit-animation-delay: 200ms; 
            animation-delay: 200ms;
  }
  .preloader .line-6 { 
    -webkit-animation-delay: 200ms; 
            animation-delay: 200ms;
  }
  .preloader .line-7 { 
    -webkit-animation-delay: 400ms; 
            animation-delay: 400ms;
  }
  .preloader .line-8 { 
    -webkit-animation-delay: 600ms; 
            animation-delay: 600ms;
  }
  .preloader .line-9 { 
    -webkit-animation-delay: 800ms; 
            animation-delay: 800ms;
  }
  @-webkit-keyframes opacity { 
    0% { 
      opacity: 1;
      height: 15px;
    }
    50% { 
      opacity: 0;
      height: 12px;
    }
    100% { 
      opacity: 1;
      height: 15px;
    }  
}
  @keyframes opacity { 
    0% { 
      opacity: 1;
      height: 15px;
    }
    50% { 
      opacity: 0;
      height: 12px;
    }
    100% { 
      opacity: 1;
      height: 15px;
    }  
}

.nav-link-custom {
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .nav-link-custom:hover {
    color: rgb(128, 128, 128);
  }
  .login-link p {
    color: #000;
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .login-link:hover p {
    color: rgb(128, 128, 128);
    text-decoration: underline;
  }
  .login-icon {
    position: relative;
    width: 24px;
    height: 24px;
    background-image: url('../img/icon/door.svg');
    background-repeat: no-repeat;
    background-size: contain;
  }
  .login-link:hover .login-icon {
    background-image: url('../img/icon/open-door.svg');
  }
  .login-link:hover .login-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -6px;
    width: 11px;
    height: 30px;
    background-image: url('../img/icon/open-door-2.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.preview-container {
    background-color: rgb(0, 0, 0);
    background-image: url('../img/topographic.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

.vpn-box {
    width: 70px;
    height: 35px;
    border: 7px solid white;
    border-radius: 20px;
}


@media (max-width: 768px) {
    .vpn-box {
        width: 50px;
        height: 25px;
        border: 5px solid white;
        border-radius: 20px;
    }
}

.btn-custom {
    width: 180px;
    padding: 2.5px 30px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 10px;
    }
    .btn-custom:active{
        border-color: rgb(255, 255, 255) !important;
    }
    .btn-custom.default {
        background-color: rgb(255, 255, 255);
    }
    .btn-custom.default:hover {
        color: rgb(255, 255, 255);
        border-color: rgb(255, 255, 255);
        background-color: transparent;
    }
    .btn-custom.transparent {
        color: rgb(255, 255, 255);
    }
    .btn-custom.transparent:hover {
        color: rgb(0, 0, 0);
        background-color: rgb(255, 255, 255);
}

.btn-custom-card {
    width: 200px;
    padding: 2.5px 30px;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 10px;
    }
    .btn-custom-card:active{
        border-color: rgb(0, 0, 0) !important;
    }
    .btn-custom-card.default {
        color: rgb(0, 0, 0);
        background-color: transparent;
    }
    .btn-custom-card.default:hover {
        color: rgb(255, 255, 255);
        background-color: rgb(0, 0, 0);
    }
    .btn-custom-card.transparent {
        color: rgb(255, 255, 255);
        background-color: rgb(0, 0, 0);
    }
    .btn-custom-card.transparent:hover {
        color: rgb(0, 0, 0);
        background-color: rgb(255, 255, 255);
        border-color: rgb(0, 0, 0);
}

.gif-content {
    -webkit-animation: right-left 15s linear infinite;
            animation: right-left 15s linear infinite;
  }
  .gif-content-item {
    width: 480px;
    height: 270px;
  }
  .gif-content-item-logo {
    height: 35px;
  }
  @media (max-width: 768px) {
    .gif-content-item {
        width: 240px;
        height: 135px;
    }

    .gif-content-item-logo {
        height: 20px;
    }

    .vpn-box {
        width: 50px;
        height: 25px;
        border: 5px solid white;
        border-radius: 20px;
    }
  }
  
  @-webkit-keyframes right-left {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-100% - 10px));
              transform: translateX(calc(-100% - 10px));
    }
  }
  
  @keyframes right-left {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-100% - 10px));
              transform: translateX(calc(-100% - 10px));
    }
}

.fs-50 {
    font-size: 50px !important;
}

.fs-35 {
    font-size: 35px !important;
}

.fs-22-5 {
  font-size: 22.5px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-20 {
    font-size: 20px !important;
}

@media (max-width: 768px) {
    .fs-50 {
        font-size: 35px !important;
    }
    .fs-35 {
        font-size: 21px !important;
    }
    .fs-22-5 {
      font-size: 18px !important;
    }
    .fs-20 {
        font-size: 15px !important;
    }
    .fs-6 {
      font-size: 15px !important;
    }
    .fs-5 {
        font-size: 1rem !important;
    }
}

.speed-s {
    width: 300px;
    height: 300px;
    }
    @media (max-width: 768px) {
        .speed-s {
            width: 200px;
            height: 200px;
        }
}

.device-icon-s {
    width: 40px;
    height: 40px;

    @media (max-width: 768px) {
        width: 30px;
        height: 30px;
    }
}

.accordion-button:not(.collapsed) {
    color: rgb(0, 0, 0) !important;
    background-color: transparent !important;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.accordion-button:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
}

footer a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    }
    footer a:hover {
        color: rgb(128, 128, 128);
        text-decoration: underline;
}

.form-control:focus {
  border-color: rgb(222 226 230);
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

#alertPlaceholder {
  z-index: 1050;
  text-align: center;
}

.loading {
  display: block;
  background-image: url('../img/icon/loading.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  text-align: center;
  -webkit-animation: circle 1s linear infinite;
            animation: circle 1s linear infinite;
  }
  @keyframes circle {
    from {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  @-webkit-keyframes circle {
    from {
      -webkit-transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
    }
}

.transaction-status-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e9f7ef;
  color: #28a745;
  border-radius: 30px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.input-group-password {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.input-group-password .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.input-group-password .btn-toggle-password {
  border: 1px solid #ced4da;
  border-left: none;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  background-color: #f8f9fa;
  padding: 0 15px;
  width: 50px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.input-group-password .btn-toggle-password:hover {
  background-color: #e9ecef;
}

.form-check-input:checked {
  border-color: transparent !important;
}

.form-check-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}