/* Loader */
#loader {
  position: fixed;
  
  height: 100vh;
  width: 100vw;
  bottom: 0;


  /* background: #202020; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.control{
    height: 100vh;
    width: 100vw;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
  width: 20vh;
  height: 20vh;

  background-image: url(Icons/Logo.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  /* border: 6px solid #1f1f1f;
  border-top: 6px solid var(--ThemeColor-);
  border-radius: 50%; */
  /* animation: spin 1s alternate infinite; */
  animation: barAnimation 1s linear 1 forwards;
}

#loader p{
    color: var(--ThemeColor-);
    
}

/* @keyframes spin {
  100% { transform: scale(1.5) }
} */


.barRail{
    position: absolute;
    top: 97%;
    left: 50%;
    transform: translate(-50%, -0%);
    width: 98vw;
    height: 1vh;
    background-color: #353535;

    border-radius: 10vh;
    transition: 1s;
    animation: barAnimation 1s ease-in-out 1 forwards;
}

.bar{
    height: 100%;
    width: 0%;
    background-color: var(--ThemeColor-);
    border-radius: 10vh;

    position: relative;
    transition: 1s;
    /* animation: barAnimation 1s ease-in-out 1 forwards; */
}

.bar p{
position: absolute;
right: 0;
top: -3vh;
opacity: 0;
transition: 1s;

animation: barAnimation 1s ease-in-out 1 forwards;
}

@keyframes barAnimation {
    0%{
        opacity: 0;
    }
    100%{
        
        opacity: 1;
    }
}




.top{
    position: fixed;
    bottom: 0;
    left: 0;
    height: 100vh;
    width: 100vw;

    background-color: #1e1e1e;
    opacity: 1;
    z-index: 9999;
}

.bottom{
    position: fixed;
    top: 0px;
    left: 0;
    height: 100vh;
    width: 100vw;

    background-color: #1e1e1e;
    opacity: 1;
    z-index: 9999;
}






















.boxof .ct {
    text-transform: uppercase;
    font-size: 1.8vh;
    color: var(--ThemeColor-);
    font-weight: 600;
    margin-top: 1vh;
    padding: 1.2vh 2vh;
    border-radius: 1.4vh;
    border: 0.4vh solid var(--ThemeColor-);

    transition: 0.3s ease;
    position: relative;
    background-color: transparent;
    cursor: pointer;
}

.boxof .ct::after {
    content: '';
    position: absolute;
    background-image: url(right-arrow.png);
    height: 1.8vh;
    width: 1.8vh;
    right: 1vh;

    top: 50%;
    right: 0.5vh;
    transform: translate(-50%, -50%);

    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: 0.3s ease;
}

.boxof .ct:hover::after {
    opacity: 1;
}

.boxof .ct:hover {
    padding: 1.2vh 4vh 1.2vh 1vh;
}

.boxof .ct:active {
    padding: 1vh 2vh;
}

.boxof .ct:active::after {
    opacity: 0;
}


.ct {
    text-transform: uppercase;
    font-size: 1.8vh;
    color: var(--ThemeColor-);
    font-weight: 600;
    margin-top: 1vh;
    padding: 1.2vh 2vh 1.2vh 2vh;
    border-radius: 1.4vh;
    border: 0.4vh solid var(--ThemeColor-);

    transition: 0.3s ease;
    position: relative;
    background-color: transparent;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ct::after {
    content: '';
    position: absolute;
    background-image: url(right-arrow.png);
    height: 1.8vh;
    width: 1.8vh;
    right: 1vh;

    top: 50%;
    right: 0.5vh;
    transform: translate(-50%, -50%);

    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: 0.3s ease;
}

.ct:hover::after {
    opacity: 1;
}

.ct:hover {
    padding: 1.2vh 4vh 1.2vh 1vh;
}

.ct:active {
    padding: 1vh 2vh;
}

.ct:active::after {
    opacity: 0;
}