:root {
    --paragrafh-color: #9A9A9A;
    --header-color: #fff;
}

::-webkit-scrollbar {
    width: .25em;
    height: .25em;
    background: #333;
}

::-webkit-scrollbar-thumb {
    background: #00CBFF;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px;
    height: 100%;
    background-image: url('../images/homepage/To_cs.png');
    background-repeat: repeat-y;
    background-size: cover;
    background-position: center;
}

#main {
    width: 100%;
    height: 100%;
}

#planets {
    background-image: url('../images/homepage/planety.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

#custom-container {
    width: 1082px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 0;
    background-image: url('../images/homepage/Bez_nazwy-22.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#custom-logo {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

.container-fluid {
    width: 90%;
    z-index: 2;
    height: 100%;
}

.small-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 640px;
    background: rgba(0, 0, 0, .8);
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    max-width: 100%;
    max-height: 100%;
}

.medium-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 632px;
    background: rgba(0, 0, 0, .8);
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    max-width: 100%;
    max-height: 100%;
}

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

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

.fw-300 {
    font-weight: 300;
}

.fw-500 {
    font-weight: 500;
}

.title {
    font-weight: 500;
    color: #fff;
}

.description {
    color: #9A9A9A;
    margin: 0;
    font-weight: 300;
}

.medium-description {
    color: #9A9A9A;
    margin: 0;
    font-size: 20px;
    font-weight: 300;
}

.soft-description {
    color: #9A9A9A;
    margin: 0;
    font-weight: 300;
    font-size: 13px;
}

.input {
    background: #000000;
    border-radius: 27px;
    color: #fff;
    padding: 10px 15px;
    display: block;
    width: 100%;
    outline: none;
    border: 1px solid #00CBFF;
    margin-top: 30px;
}

.button {
    width: 188px;
    height: 43px;
    border-radius: 5px;
    text-align: center;
    color: #000;
    background: #00CBFF;
    outline: none !important;
    border: none;
    display: block;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 15px;
}

.button:disabled {
    background: transparent !important;
    color: lightgray !important;
    border: 1px solid #fff !important;
}

.uzi-link {
    color: #00CBFF;
    font-size: 15px;
}

.input-div {
    margin-top: 1rem;
}

.invalid {
    border: 1px solid red !important;
}

.uzi-color {
    color: #00CBFF !important;
}

.light-font {
    font-weight: 300 !important;
}

.back {
    cursor: pointer;
}

/* Laptopy */
@media(max-width: 1480px) {

    #custom-logo {
        width: 390px;
        height: 452px;
    }

    #custom-container {
        width: 900px;
    }
}

/* Tablety */
@media(max-width: 1260px) {
    #custom-container {
        width: 100%;
        right: 50%;
        transform: translate(50%);
    }
}

/* Telefony */
@media(max-width: 992px) {
    #custom-logo  {
        width: 320px;
        height: 382px;
    }

    .small-form {
        width: 100%;
    }
}

.uzidesc-items {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .uzidesc-item {
    width: 80px;
    height: 80px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
    margin: 0 5px;
    cursor: pointer;
    transition: .4s;
    border-radius: 5px;
  }
  
  .uzidesc-item p {
    margin: 0;
  }
  
  .uzidesc-item img {
    display: block;
    width: 32px;
    height: 32px;
  }
  
  .uzidesc-desc {
    display: block;
    width: 100%;
    color: #fff;
  }
  
  .uzidesc-desc div {
    display: none;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
  }
  
  @-webkit-keyframes fadeIn {
      from { opacity: 0; }
        to { opacity: 1; }
  }
  @keyframes fadeIn {
      from { opacity: 0; }
        to { opacity: 1; }
  }