html, body
{
    cursor: none;
}

/*cursor start*/

/*
<div class="cursor"></div>
*/

.cursor,.cursorDown {
    width: 13px;
    height: 13px;
    
    border-radius: 50%;
    position: absolute;
    -webkit-backdrop-filter: invert(1);
    backdrop-filter: invert(1);
    transition-timing-function: ease-out;
    /*animation: cursorAnim .5s infinite alternate;*/
    pointer-events: none;
    z-index: 10;
}

/*.cursorDown
{
    background-color: black;
    border: none;
}*/

.cursorX
{
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: transparent;
    box-shadow: none;
    animation: none;
    display: none;
}

.cursorO
{
    border: 2px solid white;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: transparent;
    box-shadow: none;
    animation: none;
    transform: scale(1.39);
}

/*.cursor::after {
    content: "";
    width: 20px;
    height: 20px;

    position: absolute;
    border: 8px solid gray;
    border-radius: 50%;
    opacity: .5;
    top: -8px;
    left: -8px;
    animation: cursorAnim2 .5s infinite alternate;
}*/

@keyframes cursorAnim {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(.7);
    }
}

@keyframes cursorAnim2 {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(.4);
    }
}

@keyframes cursorAnim3 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(4);
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.expand {
    animation: cursorAnim3 .5s forwards;
}

/*cursor end*/

.update,.response,.clean
{
    color: white;
    padding: 4%;
    margin: 1.3%;
    margin-bottom: 2.1%;
    background-color: rgb(4,4,4,0.4);
    border-radius: 44px;
    font-family: 'Myriad Pro Regular';

    /*background-image: linear-gradient(139deg, grey,transparent);*/
    -webkit-backdrop-filter: blur(35px);
    backdrop-filter: blur(35px);
    transition: color 0.3s, /*transform 0.13s,*/ background-color 0.4s;
}

.update:hover
{
    color: white;
    background-color: rgb(74,74,74,0.3);
}

/*
animaitons to responses start here.
*/

@keyframes output
{
    0%
    {
        opacity: 0;
        transform: scale(0.4);
        margin-top: 7%;
    }
}

/*@keyframes cleaning
{
    100%
    {
        bottom: -10%;
    }
}*/

.response
{
    animation-name: output;
    animation-duration: 0.4s;
    animation-fill-mode: both;
}

/*.clean
{ 
    animation-name: cleaning;
    animation-duration: 2s;
    animation-fill-mode: both;
    position: fixed;
}
*/

/*
animaitons to responses end here.
*/

#passwordField,#button_Launch,#button_help
{
    background-color: rgb(44,44,44,0.4);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    padding: 1%;
    padding-left: 1.7%;
    padding-right: 1.7%;

    font-size: large;
    letter-spacing: 3px;
    color: white;
    margin: 1%;

    border: none;
    border-radius: 44px;
    transition: all 0.5s;
}

#passwordField:hover
{
    box-shadow: 0px 0px 7px magenta;
}

#latte
{
    font-family: 'Poiret One', cursive;
}

#button_Launch,#button_help
{
    font-family: "Comfortaa";
    text-align: center;
    border-radius: 44px;
    margin: 0.4%;
    transition: background-color 0.5s, color 0.5s;
}

#button_Launch:hover,#button_help:hover
{
    background-color: white;
    color: black;
}

.copyright
{
    width: 40%;
    font-size: 100%;
    color: white;
    margin-bottom: 0%;
    /*top: 30%;
    left: 0%;*/
    /*background-color: transparent;*/
    border-radius: 47px;
    padding: 0.9%;  
    background-color: rgb(13,13,13,0.4);
    
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    /*padding-bottom: 1.473%; */
    transition: all 0.25s;
}

.copyrightWrap, .original
{
    margin-bottom: 0.7%;
}

.copyright:hover
{
    animation-name: teleportII;
    animation-fill-mode: both;
    animation-duration: 10s;
    background-color: black;
    animation-iteration-count: infinite;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    cursor: none;
}

.original
{
    
}

@keyframes teleportII
{
    10%
    {
        box-shadow: 0px 0px 7px red;
        color: red;
    }
    20%
    {
        box-shadow: 0px 0px 7px yellow;
        color: yellow;
    }
    30%
    {
        box-shadow: 0px 0px 7px aqua;
        color: aqua;
    }
    40%
    {
        box-shadow: 0px 0px 7px magenta;
        color: magenta;
    }
    50%
    {
        box-shadow: 0px 0px 7px lime;
        color: lime;
    }
    60%
    {
        box-shadow: 0px 0px 7px orange;
        color: orange;
    }
    70%
    {
        box-shadow: 0px 0px 7px blue;
        color: blue;
    }
    80%
    {
        box-shadow: 0px 0px 7px darkviolet;
        color: darkviolet;
    }
    90%
    {
        box-shadow: 0px 0px 7px gold;
        color: gold;
    }
    100%
    {
        box-shadow: 0px 0px 7px white;
        color: white;
    }
}

#mobileChannelAD
{
    display: none;
}

#channelAd
{
    position: relative;
    background-image: url("https://ubistatic19-a.akamaihd.net/ubicomstatic/en-GB/global/media/ac_media_screen-04-tombTreasure_ncsa_292911.jpg");
    background-color: transparent;
    background-size: cover;
    font-size: 85%;
    height: 74%;
    border-radius: 44px;
    margin-bottom: 2.1%;

    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

#onImg
{
    position: absolute;
    top: 2%;
    right: 1%;
    width: 25%;
    padding: 2%;
    margin: 2%;
    border-radius: 40px;
    background-color: rgb(44,44,44,0.7);
    transition: background-color 0.4s, color 0.4s;
    
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: white;
}

#onImg:hover
{
    background-color: transparent;
    color: white;
}

.LSlink:link,
.LSlink:active,
.LSlink:visited {
    font-size: 150%;
    color: darkgrey;
    transition: color 0.3s, border-radius 0.3s, padding 0.1s, 
    background-color 0.2s, margin-left 0.2s;
}

.LSlink:hover {
    text-decoration: none;
    color: white;
    background-color: rgb(213,213,213,0.4);
    text-decoration: none;
    box-shadow: 0px 0px 13px black;
    -webkit-backdrop-filter: blur(44px);
    backdrop-filter: blur(44px);
    border-radius: 44px;
    padding: 1%;
    cursor: none;
    margin-left: -1%;
    animation-name: shine;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes shine {
    50%
    {
        background-color: rgb(13,13,13,0.4);
        box-shadow: 0px 0px 13px white;
    }
}

@-webkit-keyframes shine {
    50%
    {
        background-color: rgb(13,13,13,0.4);
        box-shadow: 0px 0px 13px white;
    }
}

.mapLink
{
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 1px;
    transition: all 0.25s; 
    margin: 0; 
}

.mapLink:hover
{
    background-color: rgb(213,213,213,0.4);
    border-radius: 47px;
    padding: 7%;
    padding-top: 3%;
    padding-bottom: 3%;
/*    margin-bottom: 7%;
*/  cursor: none;
    box-shadow: 0px 0px 7px black;
    transform: scale(1.122);

    animation-name: tasty;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    animation-duration: 2s;
}

@keyframes tasty
{
    50%
    {
        background-color: rgb(15,15,15,0.4);
        color: white;
        box-shadow: 0px 0px 7px white;
    }
}

@media only screen and (max-width: 1250px) 
{
    .original
    {
        animation: none;
    }

    #onImg
    {
        width: 35%;
        border-radius: 20px;
        margin: 2%;
        font-size: 74%;
    }

    #channelAd
    {
        border-radius: 21px;
        display: none;
    }

    #mobileChannelAd
    {
        display: block;
    }
    
    .copyright
    {
        width: 48%;
    }

    .cursor
    {
        display: none;
    }

    body
    {
        cursor: default;
    }

    .update,.response,.clean
    {
    border-radius: 21px;
    margin-bottom: 4.7%;
    }
}

@media only screen and (max-width: 1000px) 
{

    .copyright
    {
        width: 97%;
        margin-bottom: 1%;
    }

}
/*
.z50
{
    animation-name: zoom50;
    animation-duration: 0.4s;
    animation-fill-mode: both;
}

.z75
{
    animation-name: zoom75;
    animation-duration: 0.4s;
    animation-fill-mode: both;
}

.z0
{
    animation-name: zoom0;
    animation-duration: 0.4s;
    animation-fill-mode: both;
}

@keyframes zoom50 {
    100%
    {
        background-size: 150% 150%;
    }
}

@-webkit-keyframes zoom50 {
    100%
    {
         background-size: 150% 150%;
    }
}

@keyframes zoom0 {
    100%
    {
        background-size: 100% 100%;
    }
}

@-webkit-keyframes zoom0 {
    100%
    {
         background-size: 100% 100%;
    }
}

@keyframes zoom75 {
    100%
    {
        background-size: 175% 175%;
    }
}

@-webkit-keyframes zoom75 {
    100%
    {
         background-size: 175% 175%;
    }
}*/
