.tempForTesting {
    color:rgb(24, 35, 108);
}


@media (min-width:900px) {
    #c-search {
        width:800px;
    }
}

@media (max-width:900px) {
    #c-search {
        width:70vw;
    }
}

.c-navbar {
    width:100%;
    height:50px;
    background-color: rgb(78, 25, 116);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: wheat;
}

.c-title {
    border-bottom: 2px solid rgb(37, 37, 37);
    display: flex;
    justify-content: space-between;    
}

.c-title-text {
    font-size: 60px;
    margin-bottom: 0px;
    transform: translateY(5px);
}

.c-item-title {
    border-bottom:1px solid rgba(135, 135, 135, 0.5);
    font-size: 30px;
    font-weight: light;
    display: flex;
    justify-content: space-between;
}

.c-item-body {
    line-height: 30px;
}

.c-item {
    border: 1px solid rgba(82, 82, 82, 0.649);
    padding-left:20px;
    padding-right:20px;
    padding-top:10px;
    padding-bottom:10px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.c-item-sources {
    border: 2px solid rgb(40, 164, 52);
    padding-left:20px;
    padding-right:20px;
    padding-top:10px;
    padding-bottom:10px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.c-item-sources p {
    line-height: 20px;
}

.c-home-button {
    transform: translateY(10px);
    transition: transform 0.3s;
}

.c-home-button:hover {
    transform: translateY(5px);
}

.c-home-holder {
    position:relative;
}

@keyframes fadeOut {
    from {
      background-color: rgba(13, 87, 223, 0.582);
    }
    to {
      background-color: transparent;
    }
  }
  
.highlight {
animation-name: fadeOut;
animation-duration: 10s;
animation-fill-mode: forwards;
}

.highlightSearch {
    background-color:rgb(28, 96, 243);
    font-weight: bold;
    color:black;
}

/* BIG SCREEN */
@media (min-width:601px) {
    .c-front-text-holder h1 {
        font-size:100px;
    }
}

/* SMALL SCREEN */
@media (max-width:600px) {
    .c-front-text-holder h1 {
        font-size:15vw;
    }
}

.c-front-text-holder {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color:white;
}

.c-source-link {
    text-decoration: underline;
    text-decoration-color: rgb(203, 62, 85);
    color:rgb(203, 62, 85);
}

.c-source-link:visited {
    text-decoration: underline;
    text-decoration-color: rgb(203, 62, 85);
    color:rgb(203, 62, 85);
}

.c-source-link:hover {
    text-decoration: underline;
    text-decoration-color: rgb(203, 62, 85);
    color:rgb(203, 62, 85);
}


.c-clean-link {
    text-decoration: underline;
    text-decoration-color: rgb(62, 125, 203);
    color:rgb(62, 125, 203);
}

.c-clean-link:visited {
    text-decoration: underline;
    text-decoration-color: rgb(62, 125, 203);
    color:rgb(62, 125, 203);
}

.c-clean-link:hover {
    text-decoration: underline;
    text-decoration-color: rgb(62, 125, 203);
    color:rgb(62, 125, 203);
}

.nav-mobile {
    position: fixed;
    height: 300px;
    width:200px;
    background-color: rgba(254, 254, 254, 0.316);
    right:30px;
    top:80px;
    border-radius: 10px;
    padding-top:10px;
    padding-left:15px;
    padding-right: 15px;
    border: 1px solid rgba(255, 255, 255, 0.405);
    box-shadow: rgba(255, 255, 255, 0.429) 5px 5px 10px 0px;
    flex-direction: column;
    justify-content: space-around;
    display: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index:2; 
    backdrop-filter: blur(10px);
}

.cool_btn {
    padding: 5px 10px;
    border: none;
    font-size: 17px;
    color: #fff;
    border-radius: 7px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.5s;
    transition-property: box-shadow;
  }

#b1 {
    background: rgb(0, 137, 21);
    box-shadow: 0 0 25px rgb(0, 141, 16);
    margin-top: 10px;
}

#b2 {
    background: rgb(0,140,255);
    box-shadow: 0 0 25px rgb(0,140,255);
}

#b3 {
    background: rgb(145, 0, 193);
    box-shadow: 0 0 25px rgb(181, 0, 157);
    margin-bottom: 15px;
}
#b4 {
    background: rgb(0, 87, 193);
    box-shadow: 0 0 25px rgb(0, 100, 181);
    margin-bottom: 10px;
    display: none;
    width:100%;
}
#cancelLogin {
    display: none;
    background: rgb(193, 0, 0);
    box-shadow: 0 0 25px rgb(181, 0, 0);
}

  
.cool_btn:hover {
    box-shadow: 0 0 5px rgb(0,140,255),
                0 0 25px rgb(0,140,255),
                0 0 50px rgb(0,140,255),
                0 0 100px rgb(0,140,255);
    }

.button-seperator {
    display: flex; 
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.707);
}

.loginBits {
    width: 100%; 
    background-color: rgba(255, 255, 255, 0.867);
    margin-bottom:20px;
    border:0px;
    border-radius: 7px;
    padding:5px;
}


#loginForm {
    display: none;
    flex-direction: column;
}

.home-bg{
    height:100vh;
    width: 100%;
    object-fit: cover;
    position: fixed;
    z-index: -10;
}

.newbg{
    background-color: rgb(255, 245, 232);
}

.smtpsnav {
    font-size: 30px;
}
@media (max-width:500px) {
    .smtpsnav{
        font-size: 20px;
    }
}

#bAdmin {
    background: rgb(91, 20, 127);
    box-shadow: 0 0 25px rgba(114, 17, 113, 0.515);
    margin-top:15px;
    margin-bottom: 15px;
}

.admin-item{
    border-radius: 15px;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.422);
    width: 100%;
    margin-bottom:20px;
    color:darkslategray;
    box-shadow: 10px 10px 30px 5px rgba(215, 215, 215, 0.5);
}

.adminInput {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0);
}

.adminInput:focus {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0);
}

#live_search{
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.665);
}

.admin-nav-item{
    width:90%; 
    color:rgb(255, 255, 255); 
    display: flex; 
    align-items: center; 
    margin-top:20px;
    border:1px solid rgba(255, 255, 255, 0.5); 
    border-radius: 10px;
    padding:5px;
    transition: all 0.2s;
    padding-left:10px;
}

.admin-nav-item:hover{
    background-color: rgba(255, 255, 255, 0.204);
    cursor: pointer;
    color: rgb(67, 67, 67);
}

.userInput {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0);
    color:white;
}

.userInput:focus {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0);
    color:white;
}

.userInput:disabled {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5);
    color:white;
}

.unused {
    background-color: rgba(163, 28, 154, 0.531);
}

.approvalsInput{
    color:black;
}
.approvalsInput:disabled {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.101);
    color:black;
    cursor: not-allowed;
}

