@import url('https://fonts.googleapis.com/css?family=Exo:400,700');

* {
    outline: none;
    border: none;
    margin: 0px;
    padding: 0px;
}

body {
    font-family: 'Exo', sans-serif;
    /* overflow: hidden; */
}

.area {
    background: rgb(25, 21, 97);
    background: linear-gradient(90deg, rgba(25, 21, 97, 1) 0%, rgba(9, 9, 154, 1) 51%, rgba(33, 30, 255, 1) 100%);
    width: 100%;
    height: 100vh;
    /* z-index: -2; */

}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(114, 100, 189, 0.703);
    animation: animate 25s linear infinite;
    bottom: -150px;

}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0.2;
        border-radius: 50%;
    }

}


/* /////////////////////////////////////////////////////// */

.search-form {
    position: absolute;
    /* margin: 150px auto 0; */
    width: 300px;
    top: 20%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.search-form:before {
    content: ' ';
    position: absolute;
    left: 25px;
    top: 14px;
    width: 2px;
    height: 36px;
    transform: scale(0);
    z-index: 1;
    background: rgb(71, 136, 135);
    transition: all 0.5s cubic-bezier(.87, -.41, .19, 1.44);
}

.active:before {
    transform: scale(1);
    transition-delay: 0.3s;
    opacity: 0;
    /* animation: 0.6s cubic-bezier(.87, -.41, .19, 1.44) 0.5s infinite forwards focus; */
}

input {
    border-radius: 36px;
    position: absolute;
    width: 64px;
    height: 64px;
    transition: all 0.5s cubic-bezier(.87, -.41, .19, 1.44);
    color: rgb(0, 13, 255);
    font-size: 1.5em;
    /* background: rgb(0, 9, 40); */
    /* background: linear-gradient(90deg, rgb(17, 221, 228) 0%, rgb(16, 121, 150) 51%, rgb(5, 185, 216) 100%); */
    color: #000;
    font-weight: 400;
    text-shadow: 0px 0px 0px #000;
    text-transform: uppercase;
}

.active input {
    width: 100%;
    padding-left: 25px;
    border-radius: 36px;
}

button {
    background: rgba(255, 255, 255, 1);
    position: absolute;
    height: 100%;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    transition: all 0.5s cubic-bezier(.87, -.41, .19, 1.44);
}

button:after {
    content: ' ';
    position: absolute;
    width: 32px;
    height: 32px;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
    background: rgb(254, 111, 117);
    border-radius: 50%;
}

button:before {
    content: ' ';
    position: absolute;
    width: 24px;
    height: 24px;
    left: 0;
    right: 0;
    top: 20px;
    transform: scale(0);
    transform-origin: left top;
    margin: 0 auto;
    background: white;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.8s ease;
}

.active button {
    transform: translateX(260px);
}

.active button:before {
    transform: scale(1);
}

.focus:before {
    transform: scale(0);
    animation: none;
}

/* 
@keyframes focus {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
} */


/* //////////////////////////////////////// */
#form {
    position: absolute;
    top: 50px;
}

.details {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 40%;
    color: #fff;
    top: 150px;
    width: 100%;
    height: 70vh;
}

details {
    margin-top: 50px;
    height: 80vh;
    overflow: auto;
    display: none;
    width: 80%;
}

details::-webkit-scrollbar {
    display: none;
}

details[open] summary~* {
    animation: open 0.3s ease-in-out;
    font-size: 1.4em;
}

@keyframes open {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

details summary::-webkit-details-marker {
    display: none;
}

details summary {
    width: 100%;
    padding: 0.5rem 0;
    border-top: 3px solid #fff;
    position: relative;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 300;
    list-style: none;
}

details summary:after {
    content: "+";
    color: #fff;
    position: absolute;
    font-size: 1.75rem;
    line-height: 0;
    margin-top: 0.75rem;
    right: 0;
    font-weight: 200;
    transform-origin: center;
    transition: 200ms linear;
}


details[open] summary:after {
    transform: rotate(45deg);
    font-size: 2rem;
}

details summary {
    outline: 0;
}

details p {
    font-size: 0.95rem;
    margin: 0 0 1rem;
    padding-top: 1rem;
}