﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
:root {
    --highlight-color: #14A76C;
    --highlight-color-dark: #0f794f;
    /*--highlight-color-light: #19d589;*/
}

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}
.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

::selection {
    background: var(--highlight-color);
    color: #fff;
}

::-moz-selection {
    background: var(--highlight-color);
    color: #fff;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

body.light {
    background-color: #f9f9f9;
    color: #000;
}

body.dark {
    background-color: #1f1f1f;
    color: #fff;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

footer.light, header.light {
    background-color: #fff;
}

footer.dark, header.dark {
    background-color: #282828;
}

.floatRight {
    float: right;
}

.active {
    background-color: #4CAF50;
}

div {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.media {
    width: 48px;
    height: 48px;
    margin: 5px;
    background-color: #8f8d8e;
    border-radius: 6px;
    /*display: inline-block;*/
    float: left;
    position: relative;
    transition: background-color 0.2s;
}

#mediaAll a {
    display: inline-block;
    float: inherit;
}

#facebook:hover {
    background-color: #4172B8;
}

#hackerrank:hover {
    background-color: #2EC866;
}

#github:hover {
    background-color: #181717;
}

#instagram:hover {
    background-color: #E4405F;
}

#mediaAll {
    overflow: hidden;
    text-align: center;
    padding-top: 30px;
}

.circle {
    border-radius: 50%;
    height: auto;
}

.avatar-wrapper {
    margin: 0 auto;
    display: block;
    position: relative;
    width: 200px;
    height: 200px;
    overflow: hidden;
}

.avatar-wrapper:before {
    background: #000;
    mix-blend-mode: overlay;
    opacity: .3;
}

.avatar-wrapper:after {
    mix-blend-mode: lighten;
    opacity: .7;
    background: linear-gradient(135deg, var(--highlight-color) 0%, #010C4E 75%);
}

.avatar-wrapper:before, .avatar-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.avatar-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

*, *:before, *:after {
    box-sizing: border-box;
}

/*.Content {
    margin: 0 auto;
}*/

.invisible {
    visibility: hidden;
    display: none;
}

.footer-text {
    font-size: 12px;
}

/* NavIcon */


#nav-icon.collapsed span:nth-child(1) {
    top: 0;
}

#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
    top: 6px;
}

#nav-icon.collapsed span:nth-child(4) {
    top: 12px;
}

#nav-icon span:nth-child(1), #nav-icon span:nth-child(4) {
    top: 6px;
    width: 0;
    left: 50%;
}

#nav-icon.collapsed span {
    -webkit-transform: rotate(0) !important;
    -moz-transform: rotate(0) !important;
    -o-transform: rotate(0) !important;
    transform: rotate(0) !important;

    width: 100% !important;
    left: 0 !important;
}

#nav-icon span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon-wrapper {
    margin: 0.5rem 0.75rem;
    width: 20px;
    height: 16px;
    position: relative;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #7f7f7f; /*#d3531a;*/
    border-radius: 2px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.navbar-toggler {
    padding: 0 !important;
}

svg {
    fill: white;
}

.media svg {
    width: 75%;
    height: 75%;
    margin: auto;
}

.blinking {
    -webkit-animation: blink-animation 1s steps(3, start) infinite;
    animation: blink-animation 1s steps(3, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

.cursor {
    margin-left: -5px;
}

#typewriter {
    font-size: x-large;
}

.colored {
    color: var(--highlight-color);
}

#success_message {
    display: none;
}

#buildId {
    font-size: 6px;
    position: absolute;
    bottom: 6px;
    right: 6px;
    vertical-align: text-bottom;
    color: lightgray;
}

.noborder {
    border: none;
}

.noborder:focus {
    outline: 0;
}