﻿/* 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. */

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;
}
@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;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
  background-color:black;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    background-color: rgb(167, 171, 183);
    overflow: hidden;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}

.content-wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    /*background: rgb(130,228,255);
    background: linear-gradient(5deg, rgba(130,228,255,1) 0%, rgba(255,228,115,1) 100%);*/
    background-color: #1F1F1F;
    /*    background: rgb(130,228,255);
    background: radial-gradient(circle, rgba(221,224,201,1) 34%, rgba(225,225,195,1) 41%, rgba(228,226,189,1) 47%, rgba(204,219,231,1) 47%, rgba(255,233,142,1) 100%);*/
}

.spinner-grow {
    position:relative;
    top: 44%;
    margin: 0rem 1rem 0rem 1rem;
}

.spinner-wrapper {
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
}

.telephoneSVG {
    filter: invert(95%) sepia(3%) saturate(309%) hue-rotate(5deg) brightness(116%) contrast(83%);
    height:4rem;
}

#spinner1 {
    height: 0rem;
    width: 4rem;
    color: #e9e9e9;
    animation-duration: 1.3s;
}
#spinner2 {
    height: 0rem;
    width: 4rem;
    color: #e9e9e9;
    animation-delay: 69ms;
    animation-duration: 1.3s;
}
#spinner3 {
    height: 0rem;
    width: 4rem;
    color: #e9e9e9;
    animation-delay: 138ms;
    animation-duration: 1.3s;
}

/*.videoContainer {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
}*/

#remoteVideo {
    float: none;
    margin-left: 0 !important;
    width: -webkit-fill-available !important;
    height: auto !important;
    max-height: 100vh;
    object-fit: fill; 
}

#localVideo {
    position: absolute;
    bottom: 50px;
    object-fit: fill;
    margin-right: 20px;
    right: 0;
}

    #localVideo video {
        height: 25vh;
        border-radius: 40px;
        width: 100%;
        -webkit-box-shadow: 0px 2px 6px 1px rgba(0,0,0,0.47);
        box-shadow: 0px 2px 6px 1px rgba(0,0,0,0.47);
        border: 2px solid #1F1F1F;
    }




.text-center{
    height:100%;
}

main{
    height:100%;
}

.help-text-wrapper {
    position: absolute;
    display: flex;
    justify-content: center;
    top: 60%;
    width: 100%;
    height: 100%;
}

#help-text {
    opacity: 1;
    text-align: center;
    font-size: 48px;
    color: #e9e9e9;
    font-family: monospace;
}

.fadeInDropDown1S {
    animation: fadeIn 0.5s ease-in both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, -10%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}



/*Pulserende telefon */

.pulse i {
    color: #fff
}

.pulse {
    height: 100px;
    width: 100px;
    background-color: #3178BC;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 40vh;
    
}

    .pulse::before {
        content: "";
        position: absolute;
        border: 1px solid #3178BC;
        width: calc(100% + 160px);
        height: calc(100% + 160px);
        border-radius: 50%;
        animation: pulse 1.5s linear infinite;
    }

    .pulse::after {
        content: "";
        position: absolute;
        border: 2px solid #3178BC;
        width: calc(100% + 160px);
        height: calc(100% + 160px);
        border-radius: 50%;
        animation: pulse 1.5s linear infinite;
        animation-delay: 0.4s
    }

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0
    }

    50% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.3);
        opacity: 0
    }
}


