.less-height {
    height: 3em;
}

.much-less-height {
    height: 1em;
}

.much-much-less-height {
    height: .3em;
}


.dense-data {
    margin: 0.3em;
    padding: 0.3em;
}

@media screen and (max-width: 500px) {
    .dense-data {
        font-size: 12px;
    }
}


.dark-overlay {
    position: absolute;
    opacity: .5;
    top:0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: black;
}
.inline {
    display: inline;
}
.centre-elem {
    margin: auto;
    height: 5em;
    width: 5em;
    top: 50%;
    position: relative;
}

.reaction-time {
    margin: 0 5% 0 0;
}

.edit-modal {
    overflow: visible;
    /* min-height:50em; */
}

.select-with-space {
    margin-bottom: 6em;
}


.collection-editable {
    overflow: visible;
    /* min-height:50em; */
}

.btn-edit {
    position: absolute;
    top:calc(50% - 1em);
    right: -1em;
}

.btn-link {
    color: white;
}
.icon-red {
    color: red;
}
.icon-yellow {
    color: orange;
}

.centre {
    width: 70vw;
    height: 70vh;
    top: 50vh;
    left: 50vw;
    margin-top: -35vh;
    margin-left: -35vw;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.centre-50 {
    width: 80%;
}
.btn-spacing {
    margin-top: 1em;
    margin-right: 2em;
}
.btn-spacing-left {
    margin-top: 1em;
    margin-left: 2em;
}

#signin-form {
    width: 100%;
}

.events-modal {
    width: 95%;
    max-height: 85%;
}

.text-btn {
    color: #039be5;
    cursor: pointer;
}
.icon-align {
    vertical-align: top;
}

.white-text {
    color: white;
}
.section-header {
    padding: 0 24px;
    padding: 0 1rem;
}
.navbar {
    background-color: lightgray;
}
.nav-item {
    color: hsl(187, 51%, 37%);
}

.black-text {
    color: black;
}

.session-date-divider {
    margin: 1em 0 0 0;
}

.ressemble-mobile {
    max-width: 600px;
    margin: auto;
}

.breadcrumb-elem {
    font-size: 1em;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    max-width: 10em;
}

.cam-link {
    color: black;
    padding:.3em;
}
.cam-link .a {
    color: black;
}

.focus-overlay {
    width: 100vw;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    visibility: visible;
    background: rgba(0,0,0,0.8);
    z-index: 999;
    opacity: 0;
    -webkit-transition: opacity 2s ease-in-out;
    -moz-transition: opacity 2s ease-in-out;
    -ms-transition: opacity 2s ease-in-out;
    -o-transition: opacity 2s ease-in-out;
}

.fade-out {
    opacity: 0;
    visibility: visible;
    -webkit-transition: opacity 2s ease-in-out;
    -moz-transition: opacity 2s ease-in-out;
    -ms-transition: opacity 2s ease-in-out;
    -o-transition: opacity 2s ease-in-out;
}
.fade-in {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -ms-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
}
.hidden {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 2s ease-in-out;
    -moz-transition: opacity 2s ease-in-out;
    -ms-transition: opacity 2s ease-in-out;
    -o-transition: opacity 2s ease-in-out;
}
@media only screen and (max-width: 600px){
    .desktop {
       display: none;
    }
 }

 
@media only screen and (min-width: 601px){
    .mobile {
       display: none;
    }
 }

 .rounded-top {
     border-radius: 1vh 1vh 0 0;
 }

 .rounded-bottom {
     border-radius: 0 0 1vh 1vh;
 }

 .rounded {
     border-radius: 1vh;
 }