* {
    font-family: 'Ubuntu', sans-serif;
    transition: display .3s ease-in;
}

html,
body {
    background: linear-gradient(270deg, rgba(103, 99, 222, 0.8) 33%, rgba(166, 77, 171, 0.8) 66%, rgba(223, 70, 127, 0.8) 100%);
}

a {
    transition: all .3s ease-in;
}

a:hover, a:active {
    text-decoration: none;
}

.navbar-light .navbar-nav .nav-link {
    font-weight: bold;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .active>.nav-link {
    color: rgb(242, 117, 56) !important;
}

.btn.focus, .btn:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.text-muted {
    display: none;
    color: red !important;
}

.block {
    background-color: rgba(256, 256, 256, 0.7);
    padding: 15px;
    border-radius: 10px;
}

footer {
    color: #797979;
    text-align: left;
    font-weight: bold;
    background-color: white;
    padding: 15px;
    opacity: 0.8;
}

footer address a {
    color: rgb(242, 117, 56) !important;
    font-size: 18px;
}

footer address a:hover {
    color: rgb(115, 71, 187) !important;
}

footer .list-group-item a {
    font-size: 14px !important;
    color: rgb(242, 117, 56) !important;
}

footer .list-group-item a:hover {
    color: rgb(115, 71, 187) !important;
}

.form-group {
    text-align: center;
}

.form-group label {
    color: #8582e4;
    font-size: 20px;
    font-weight: bold;
}

.profile {
    display: none;
    text-align: center;
}

.profile h5 {
    font-size: 20px;
    color: black;
}

.profile .profile-data {
    display: inline-block;
    margin-left: 25px;
    color: rgb(223, 70, 127);
    text-align: left;
}

.profile .profile-data .desc {
    color: gray;
}

.profile .profile-data .posts,
.profile .profile-data .followers,
.profile .profile-data .following {
    color: rgb(103, 99, 222);
}

.profile-image {
    width: 150px;
    border-radius: 50%;
}

.info p {
    color: gray;
    margin-top: 23px;
    padding: 23px;
}

.info .row:last-of-type h3 {
    background: linear-gradient(270deg, rgba(223, 70, 127, 0.8) 33%, rgba(166, 77, 171, 0.8) 66%, rgba(103, 99, 222, 0.8) 100%);
    color: #ffffff;
}

/*Terminal*/

#terminal {
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
}

#terminal .terminal-back {
    background-color: black;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0.9;
    z-index: 99;
}

#terminal .terminal-window {
    top: 10%;
    position: fixed;
    opacity: 1;
    z-index: 100;
}

#terminal .fakeButtons {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    border: 1px solid #9d252b;
    position: relative;
    top: 6px;
    left: 6px;
    background-color: #ff3b47;
    display: inline-block;
    margin-bottom: 5px;
}

#terminal .fakeMinimize {
    left: 11px;
    background-color: #ffc100;
    border-color: #9d802c;
}

#terminal .fakeZoom {
    left: 16px;
    background-color: #00d742;
    border-color: #049931;
}

#terminal .fakeMenu {
    width: 100%;
    box-sizing: border-box;
    height: 25px;
    background-color: #bbb;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

#terminal .fakeScreen {
    background-color: black;
    box-sizing: border-box;
    width: 100%;
    height: 400px;
    overflow: auto;
    padding: 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#terminal span {
    position: relative;
    text-align: left;
    font-size: 12px;
    font-family: monospace;
    white-space: normal;
    overflow: hidden;
    color: #fff;
}

#terminal .username {
    color: red;
    font-weight: bold;
}

.pays {
    display: none;
    text-align: center
}

.pays img {
    width: 80px;
    height: 80px;
}

.pays .alert a {
    color: white !important;
}

.help-block {
    color: red;
    font-size: 80%;
}

.notification-link {
    color: #8582e4;
}

.add {
    font-size: 18px;
    text-align: center;
    cursor: pointer;
}

.add-link {
    color: #5181b8;
}

.add-link:hover {
    color: #2787f5;
}

/*Spinner*/
#spinner {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    text-align: center;
    display: none;
}

.spinner-back {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0.9;
    background-color: black;
    z-index: 99;
}

.spinner {
    margin: auto;
    width: 80px;
    height: 80px;
    position: relative;
    text-align: center;
    top: 45%;
    opacity: 1;
    z-index: 100;
    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
}

.dot1, .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes sk-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 50% {
          transform: scale(1.0);
          -webkit-transform: scale(1.0);
      }
}

@media(max-width: 991px) {
    .block.result {
        margin-top: 50px;
    }
}

@media (max-width: 380px) {
    .logo {
        width: 50px;
    }
}

@media (max-width: 360px) {
    .logo {
        width: 40px;
    }
}

@media (max-width: 340px) {
    .logo {
        width: 30px;
    }
}
