@import url(../js/slick-master/slick/slick-theme.css);
@import url(../js/slick-master/slick/slick.css);

/* -------------------------------------- Framework ------ */

body.dark {
    background: #1f282d;
}

.internal-content {
    padding: 0 0 150px 0;
    color: #1f282d;
    display: none;
    position: relative;
}

.back-button,
.next-button {
    transition: 1.3s cubic-bezier(0.18, 1, 0.21, 1);
}

.next-button {
    float: right;
}

.back-button i.fas,
.next-button i.fas {
    padding: 30px;
    transition: 1.3s cubic-bezier(0.18, 1, 0.21, 1);
}

.back-button:hover i.fas {
    padding-right: 10px;
    color: #FFF;
    transition: 1.3s cubic-bezier(0.18, 1, 0.21, 1);
}

.next-button:hover i.fas {
    padding-left: 10px;
    color: #FFF !important;
    transition: 1.3s cubic-bezier(0.18, 1, 0.21, 1);
}

.notebook-button {
    background: #2c2c2c;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
    border-radius: 50px;
    height: 60px;
    width: 60px;
    line-height: 3.3;
    color: #FFF !important;
    border-bottom: 0 !important;
    text-align: center;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
    z-index: 2;
}

.notebook-button:hover {
    color: #FFF !important;
    background: #009688;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

/* -------------------------------------- Header ------ */

#header {
    margin: 15px;
    z-index: 2;
    position: relative;
}

.notification {
    background: #1f282d;
    color: #FFF;
    padding: 15px;
    
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10001;
}

.college-logo {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: rgba(255,255,255, 0.02);
    padding: 20px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.2);
    z-index: 3;
}

@media screen and (max-width: 1000px) {
    .college-logo {
        top: 80px;
    }
}

/* -------------------------------------- Palette ------ */

.primary {
    background-color: #009688;
}

.primary-border {
    border-right: 5px solid #009688;
}

.primary-text {
    color: #009688;
}

.secondary {
    background-color: #a5d8ff;
}

.secondary-border {
    border-right: 5px solid #a5d8ff;
}

.secondary-text {
    color: #a5d8ff;
}

.tertiary {
    background-color: #228ae6;
}

.tertiary-border {
    border-right: 5px solid #228ae6;
}

.tertiary-text {
    color: #228ae6;
}

.white {
    background: #FFF;
/*    border-bottom: solid 1px rgba(160, 160, 160, 0.3);*/
/*    border-top: solid 1px rgba(160, 160, 160, 0.3);*/
}

.white-text {
    color: #FFF;
}

.white-border {
    border-right: 5px solid #FFF;  
}

@media screen and (max-width: 1200px) {
    .primary-border {
        border-bottom: 5px solid #009688;
        border-right: 0;
    }

    .secondary-border {
        border-bottom: 5px solid tomato;
        border-right: 0;
    }

    .tertiary-border {
        border-bottom: 5px solid #228ae6;
        border-right: 0;
    }

    .white-border {
        border-bottom: 5px solid #FFF;
        border-right: 0;
    }
}

.button.primary {
    background: #009688;
}

.button.secondary {
    color: #1f282d !important;
    -webkit-appearance: none;
    padding: 15px 30px;
    border-radius: 5px;
    border: solid black 2px !important;
}

.button.secondary:hover {
    border: 0;
    background: #d3d3d3;
}

.notification-area {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 5px;
}

/*--------------------------------------- Banner Image ---*/

.banner-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    background-size: cover !important;
    background-position: center center !important;
}

.banner-image:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";

    background: rgba(40, 50, 62, 0.34);
}

.banner-content {
    left: 15%;
    position: absolute;
    /* padding: 250px 25%; */
    text-align: center;
    color: #FFF;
    top: 50%;
    transform: translateY(-50%);
    right: 15%;
}

.banner-content button {
    background: transparent;
    border: 0;
}

.banner-content button i {
    color: #FFF;
}

.banner-content button i:hover {
    color:  #228ae6;
}

.banner-content h1 {
    color: #FFF;
    font-size: 4em;
}

.banner-content h5.subtitle {
    color: #1971c2;
}

@media screen and (max-width: 1000px) {
    .banner-content {
        position: relative;
        top: initial;
        left: initial;
        right: initial;
        transform: none;
        padding: 200px 15%;
    }
    
    .banner-content h2 {
        font-size: 2rem !important;
    }

    .banner-content h5.subtitle {
        font-size: 1em;
    }

    .banner-content p {
        font-size: 0.8em;
    }
}

/*--------------------------------------- Lists  ---*/

.checkitem {
    background: white;
    padding: 30px;
    margin-bottom: 10px;
}

ul.checklist {
    list-style-type: none;
    padding-left: 0;
}

ul.checklist li {
    position: relative;
    list-style-type: none;
    margin: 25px .5em 25px 0;
    counter-increment: index;
}

ul.checklist li:first-child {
    margin-top: 0;
}

ul.checklist li i.fa,
td i.fa {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

span.checkname {
    margin: 0 0 0 2em;
    display: block;
    position: relative;
}

.listing {
    list-style-type: none;
    padding-left: 0;
    margin: 30px auto;
    
    counter-reset: numberical-order;
}

.listing li {
    position: relative;
    margin-bottom: 8px;
    background: rgb(251 251 251 / 7%);
    counter-increment: numberical-order;
    color: #FFF;
    border-radius: 5px;
}

.listing li a {
    border-color: #cacaca;
}

.listing li[type=button] {
    -webkit-appearance: none;
}

.listing li:nth-child(odd),
.listing li:nth-child(even){
    padding: 10px;
    padding-left: 120px;
}

.listing li:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    
    height: auto;
    width: 100px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    
    content: counter(numberical-order);
    background: rgb(236 236 236 / 5%);
    color: rgb(243 243 243 / 31%);
    font-weight: 400;
    font-size: 0.9rem;
}

.listing.alpha {
    counter-reset: alpha-order !important;
}

.listing.alpha li {
    counter-increment: alpha-order !important;
}

.listing.alpha li:before {
    content: counter(alpha-order, lower-alpha) !important;
}

#questionaire li.question:hover {
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

#questionaire li.question.correct,
#questionaire li.question.incorrect {
/*    outline: 2px solid;*/
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

#questionaire li.question.correct {
    background: #009688;
    color: #FFF;
}

#questionaire li.question.incorrect {
    background: rgba(40, 43, 47, 0.85);
    color: #FFF;
}

#questionaire li.question.correct:after,
#questionaire li.question.incorrect:after {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    
    color: #FFF;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
    font-size: 0.8rem;
}    

#questionaire li.question.correct:before {
    background: rgba(3 128 116);
    color: #FFF;
}

#questionaire li.question.incorrect:before {
    background: rgba(40, 43, 47, 0.85);
    color: #FFF;
}

#questionaire li.question.correct:after {
    content: 'Correct';
}

#questionaire li.question.incorrect:after {
    content: 'Incorrect';
    color: #FFF;
}

@media (max-width: 768px) {
    .listing li {
        margin-top: 30px;
    }
    
    .listing li:before {
        width: 50px;
    }
    
    .listing li:nth-child(odd),
    .listing li:nth-child(even){
        padding-left: 60px;
    }
    
    #questionaire li.question.correct:after,
    #questionaire li.question.incorrect:after {
        top: -10px;
        right: 0;
        font-size: 0.6rem;
    }
}

/*--------------------------------------- Bootstrap Accordion ---*/

#accordion .card {
    background: transparent;
    border: 0;
    box-shadow: 0;
    margin: 0;
}

#accordion .card-header {
    background: #f1f1f1;
    border: 0;
    box-shadow: 0;
    position: relative;
}

#accordion .card .btn.btn-link {
    color: #1f282d !important;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 5px;
}

#accordion .card-header .collapse-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

#accordion .card-body {
    background: #f3f3f3;
    color: #1f282d;
    margin-bottom: 15px;
    padding: 50px;
}

/*--------------------------------------- Bootstrap Popovers */
  
.popover {
    box-shadow: none;
    border: 1px solid #f1f1f1;
    padding: 15px;
}

.popover .arrow {
    display: none;
}

.popover-title {
    font-weight: 600;
    border-bottom: 0 !important;
    background: transparent !important;
}

.popover-content {
    
}

/*--------------------------------------- Bootstrap Tooltips */

.highlight-tooltip {
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.highlight-tooltip:hover {
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
    
    outline: 2px solid #1f282d;
}


/*--------------------------------------- Slick Slider */

.instruction-label {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
    background: white;
    margin: 30px;
    padding: 30px;
    border-radius: 5px;
    width: 400px;
}

.slide-title {
    font-size: 4rem;
}

.slick-slider {
    width: 100%;
    min-height: 400px;
    height: calc(100vh - 5px) !important;
    overflow: hidden;
    position: relative;
    display: block;
    margin-top: 0 !important;
    cursor: pointer !important;
}

.slick-slider .draggable {
    width: inherit;
    height: inherit;
    position: relative !important;
}

.slick-slider .slick-track {
    width: inherit;
    height: inherit;
    
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}

.slick-slider .slick-slide {
    min-height: inherit;
    margin: 5px;
    background: transparent;
    border-radius: 3px;
}

.slide {
    width: 100%;
    min-height: inherit;
    
    border-radius: 0; 
    border: 0 !important;
    background: transparent;
    
    position: relative;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.slick-slide:nth-child(2) {
    height: 100vh;
    background: #625a66;
}

.slide:hover,
.slide:focus {
    outline: none;
    transform: scale(1,1);
}

button.slick-arrow:before {
    color: #333333;
}

.slide-content {
    display: block;
    position: relative;
    width: 100%;
    font-size: 1rem;
    
    text-align: left;
    z-index: 4;
}

.slide-content.text-content {
    padding: calc(100vh /4) 15%;
}

.slide-content h6 {
    font-weight: 300;
    font-size: 2rem;
    color: #FFF;
}

.slide-image {
    position: absolute;
    top:0;
    bottom:0;
    right: 0;
    left: 0;
    
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important; 
    
    background: #FFF;
}

.remove-child {
    display: none !important;
}

.slide-link {
    position: absolute;
    bottom: 40px;
    right: 40px;
    border: 0;
    color: #FFF;
}

.slide-link:hover {
    border: 0;
}

/*--------------------------------------- Bideo */

#background_video {
    position: fixed;

    top: 50%; left: 50%;
    transform: translate(-50%, -50%);

    object-fit: cover;
    height: 100vh;
    width: 100%;
    min-height: 900px;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    
    height: 100vh;
    width: 100%;
    min-height: 900px;
    
    background: rgba(0,0,0,0.8);
}

#video_cover {
    position: fixed;

    height: 100vh;
    width: 100%;
    min-height: 900px;

    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

#video_controls {
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%, 0);
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.landing.banner-image #video_controls {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
}

.banner-image.banner-hide #video_controls {
    top: 85%;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

#play img {
    width: 100px;
}

#pause img {
    width: 90px;
}

#pause {
    display: none;
}

.play-button,
.pause-button {
    border: 1px solid #e9ecef !important;
    background: #e9ecef !important;
    border-radius: 50px;
    display: inline-block;
    height: 60px;
    width: 60px;
    padding: 0;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
    position: relative;
}

.play-button:hover,
.pause-button:hover {
    border: 5px solid #e9ecef;
    transform: scale(1.1);
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.play-button i.fas, 
.pause-button i.fas {
    position: absolute; 
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    
    color: #495057;
}

.play-button i.fas {
    left: 4px;
}

.button-container {
    position: fixed;
    bottom: 0;
    left: 25%;
    right: 25%;
    text-align: center;
    z-index: 3;
}

a.hero-button {
    color: black;
    display: inline-block;
    position: relative;
    
    width: 250px;
    height: 150px;
    background-color: #FFF;
    border-top-left-radius: 250px;
    border-top-right-radius: 250px;
    border: none;
    border-left: 0;
    
    margin: 0 0 -10px 0;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
    
    box-shadow: 0px 0px 78px -41px rgba(0,0,0,0.35);
}

a.hero-button span {
    position: absolute;
    top: 60%;
    transform: translateY(-40%);
    left: 0;
    right: 0;
    text-align: center;
    color: #009688;
}

a.hero-button:hover {
    background: #009688;
    color: #FFF;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
    border: none;
    
    transform: scale(1.1);
    margin: 0;
}

a.hero-button:hover span {
    color: #FFF;
}

/*--------------------------------------- Grid Item */

.grid-item {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    
    width: 100%;
    height: 300px;
    margin: 0 0 30px;
    position: relative;
    box-shadow: 0px 0px 78px -41px rgba(0,0,0,0.55);
    border: 0;
    border-radius: 5px;
    
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.grid-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    padding: 30px;
    font-size: 1.4rem !important;
    color: #FFF !important;
    font-size: 1.6rem;
    z-index: 3;
}

.grid-item:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    z-index: 1;

    background: rgba(31, 40, 45, 0.44);
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.grid-item:hover {
    border: 0;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
    transform: scale(1.1);
}

.grid-item:hover:before {
    background: rgba(31, 40, 45, 0.94);
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.grid-title {
    position: absolute;
    bottom: -10px;
    left: 10px;
    z-index: 2;
    
    color: #FFF;
    background: #009688 !important;
    padding: 10px 30px;
    border-radius: 50px;
}

/*--------------------------------------- Modal */

.modal-backdrop {
    background: rgba(31, 40, 45, 0.94) !important;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

body.modal-open {
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.modal-content {
    background: transparent;
    border: 0;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
    color: #FFF;
}

.modal-header {
    border: 0;
}

.modal-dialog {
    max-width: 800px;
}

.modal-button {
    background: #009688 !important;
    border-radius: 50px;
    height: 50px;
    width: 50px;
    padding: 0;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.modal-button:hover,
.modal-button:focus {
    background: #13756c !important;
    outline: none;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.save-button {
    float: right;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

/*--------------------------------------- Activity */

.activity-item {
    padding: 60px;
    margin-bottom: 30px;
    border-radius: 5px;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
    border: 1px solid rgb(31 40 44 / 5%);
}

.activity-icon i {
    opacity: 0.3;
    font-size: 2rem;
    margin-bottom: 15px;
}

.activity-item:hover,
.activity-item:focus,
.activity-item.active {
    border: none;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
    background: rgba(255,255,255,0.5);
    color: #1f282d !important;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.5);
}

body.dark .activity-item {
    color: #FFF;
    border: 1px solid rgba(255,255,255,0.03);
}

body.dark .activity-item p {
    color: rgba(255,255,255,0.7);
}

body.dark .activity-icon {
    opacity: 0.2;
}

body.dark .activity-item:hover,
body.dark .activity-item:focus,
body.dark .activity-item.active {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.03);
    color: #FFF !important;
}

/*--------------------------------------- Footer */

#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    
    background: transparent;
    margin-bottom: 0 !important;
    height: 180px;
    overflow: visible;
}

/*--------------------------------------- Animation */

.fade-in {
    animation: fadein 3s;
    -moz-animation: fadein 3s; /* Firefox */
    -webkit-animation: fadein 3s; /* Safari and Chrome */
    -o-animation: fadein 3s; /* Opera */
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}

/*--------------------------------------- Observation Document */

.observation-document {
    margin: 50px 5% 0;
    padding: 50px;
    background: #FFFFFF;
    border-radius: 3px;
    color: initial !important;
}

.observation-document label {
    color: #1f282d !important;
}

span.underline {
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    width: 100%;
    display: inline-block;
    font-weight: 800;
}

.block {
    background: #f3f3f3;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 5px;
}

.block p {
    margin: 0;
}

.block:nth-child(odd) {
    text-align: center;
}

/*--------------------------------------- Environment Setup */

body.interactive-environment {
    overflow: hidden;
}

body.dark .environment-setup {
    height: 85vh;
}

.environment-setup {
    position: relative;
    z-index: 1;
}

body.dark .pull-out {
    background: #171d20;
}

body.dark .pull-item {
    border: 1px solid #1f282c;
}

.pull-out {
    position: fixed;
    right: -265px;
    top: 0; 
    bottom: 0;
    padding: 50px 50px 50px 75px;
    box-shadow: 0px 0px 78px -41px rgba(0,0,0,0.55);
    
    height: 100vh;
    background: #FFFFFF;
    z-index: 10000;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1) !important;
}

.pull-out:hover {
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1) !important;
    right: 0;
    left: initial;
    overflow-y: scroll;
    overflow-x: hidden;
    
}

/*
.pull-out:hover .pull-lever {
    transition: 1.3s cubic-bezier(0.18, 1, 0.21, 1);
    transform: translate(-50%) rotate(180deg) !important;
}
*/

.pull-out::-webkit-scrollbar {
    width: 0.4rem;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}
 
.pull-out::-webkit-scrollbar-track {
    -webkit-box-shadow: 0;
    background-color: #1f282d;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}
 
.pull-out::-webkit-scrollbar-thumb {
    background-color: #171d20;
    outline: 1px solid #171d20;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.pull-lever {
    position: absolute;
    top: 50%;
    transform: translate(-50%);
    left: 30px;
    height: 100%;

    font-size: 1.4rem;
}

.instructions {
    transform: rotate(90deg) !important;
    font-size: 0.8rem;
    position: fixed;
    right: 50px;
    top: 70px;
    
    color: #9e9e9e !important;
}

body.dark .instructions {
    color: #515b61 !important;
}

.pull-item,
.doc-item {
    width: 100%;
    min-width: 200px;
    max-width: 200px;
    position: relative;
    padding: 30px;
    border: 1px solid #f3f3f3;
    border-radius: 5px;
    margin-bottom: 10px;
}

.doc-item img {
    max-width: 60px;
    max-height: 60px;
    margin: 15px auto;
}

.doc-item:hover {
    cursor: pointer;
}

.pull-item > .drag-item {
    max-width: 100px;
    min-height: 100px;
    width: 100%;
    cursor: move;
    text-align: center;
    display: block;
    
    margin: 0 auto;
}

span.label {
    font-size: 0.9rem;
    text-align: center;
    position: relative;
    width: 100%;
    display: block;
}

body.dark span.label {
    color: #FFF;
    
}

.drop-field {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    
    height: 100vh;
    width: 100%;
    
    position: absolute;
    top: -130px;
    right: 0;
    left: 0;
    bottom: 0;
    
    z-index: 1;
}

.button-dash {
    position: fixed;
    z-index: 4;
    bottom: 30px;
    left: 30px;
}


body.dark .screenshot-button, 
body.dark .clean-button {
    color: #515b61 !important;
}

.screenshot-button, 
.clean-button {
    color: #9e9e9e !important;
    background: 0;
    padding: 30px;
    display: inline-block;
}

.screenshot-button:focus, 
.clean-button:focus,
.screenshot-button:hover, 
.clean-button:hover {
    outline: none;
}

@media screen and (max-width: 980px) {
    .progress {
        display: none !important;
    }
}

.progress {
    border-bottom: none !important;
    border-bottom: none !important;
    margin: 0 15% 50px;
    border-radius: none !important;
    background: transparent !important;
    height: auto !important;
}

.progress-bar {
    border-bottom: 2px solid #009688;
    display: block !important;
    background: transparent !important;
    padding: 15px;

    border-radius: none !important;
    -webkit-box-orient: none;
    -webkit-box-direction: none;
    -ms-flex-direction: none;
    flex-direction: none;
    -webkit-box-pack: none;
    -ms-flex-pack: none;
    justify-content: initial;
}

.progress.light .progress-bar {
    color: initial;
}

.progress-bar.negative-bar {
    color: rgba(255,255,255,0.2);
    border-bottom: 2px solid #2b373d !important;
}

.progress.light .progress-bar.negative-bar {
    color: rgba(0,0,0,0.2) !important;
    border-bottom: 2px solid rgba(0,0,0,0.1) !important;
}


.progress-bar.past-bar {
    border-bottom: 2px solid #108378 !important;
    color: rgba(255,255,255,0.4);
}

.progress.light .progress-bar.past-bar {
    color: rgba(0,0,0,0.4) !important;
}


.icon-box {
    background: rgba(255,255,255,0.02);
    border-radius: 5px;
    padding: 50px;
    margin-bottom: 30px;
}

.icon-content {
    color: #FFF;
}

.icon-content p {
    margin-bottom: 0;
}

.icon-graphic {
    color: rgba(255,255,255,0.2);
    font-size: 2rem;
}


/*--------------------------------------- Nav-tabs */

.nav-tabs{
    padding: 0 30px;
    border: none;
}

.nav-tabs .nav-link{
    font-size: 12px;
    border-bottom: 2px solid #dedede;
    border-left: none;
    border-right: none;
    border-top: none;
    border-radius: 0;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.nav-link:hover {
    color: initial !important;
    border-bottom: 2px solid #108378 !important;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active{
    border-bottom: 2px solid #108378;
    background: none;
    font-weight: 500;
    color: initial;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

/*--------------------------------------- Behaviour App */

.behaviour-app .slide-icon{
    padding: 30px;
    border: 1px solid #f3f3f3;
    border-radius: 5px;
    margin-bottom: 25px;
	min-width: initial;
    max-width: initial;
}

.behaviour-app .slide-icon img {
    max-width: 60px;
    max-height: 60px;
    margin: 15px auto;
}

/*--------------------------------------- Museum */

.fence-divider {
    background-repeat: no-repeat !important;
    position: fixed;
    top: 63vh;
    left: 5%;
    right: 0;
    height: 73vh;
    width: 100%;
    margin: 0 auto;
}

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

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

    100% {
        -webkit-transform: scale(0.8);
        opacity: 0.5;
    }
}
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.8);
        opacity: 0.5;
    }

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

    100% {
        -webkit-transform: scale(0.8);
        opacity: 0.5;
    }
}
@-o-keyframes pulse {
    0% {
        -webkit-transform: scale(0.8);
        opacity: 0.5;
    }

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

    100% {
        -webkit-transform: scale(0.8);
        opacity: 0.5;
    }
}
@-moz-keyframes pulse {
    0% {
        -webkit-transform: scale(0.8);
        opacity: 0.5;
    }

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

    100% {
        -webkit-transform: scale(0.8);
        opacity: 0.5;
    }
}

.hotspot {
    position: relative;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.hotspot:before:hover {
    background: #009688;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
    cursor: pointer;
}

.hotspot:before {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    position: absolute;
    top: 0;
    transform: translateY(-70%);
    left: 0;
    color: #FFF;
    background: #1f282d;
    content: "!";
    font-family: FontAwesome;
    text-align: center;
    padding: 0;
    z-index: 10;
    font-size: 2.5rem;
    line-height: 2.5;
    opacity: 0.5;
    animation: pulse 1s ease-in-out infinite;
}

.svg-container {
    position: relative;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.svg-container.area-entered:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    background: rgb(243 243 243 / 83%);
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.svg-areas {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    
    justify-content: center;
}

.area-hotspot {
    height: calc(100% /6);
    margin: 0;
    padding: 0;
    width: 11.11% !important;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
    border-bottom: 0 !important;
    text-align: center;
    position: relative;
    display: block;
    border-radius: 3px;
    font-weight: 500;
}

.area-hotspot.filled:hover {
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
    border-bottom: 0 !important;
    color: initial !important;
}

.area-hotspot.filled:hover i {
    color: #009688 !important;
}

.area-hotspot.filled i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background: #FFF;
    margin: 0 auto;
    
    -webkit-box-shadow: 0px 0px 12px -4px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 12px -4px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 12px -4px rgba(0,0,0,0.2);
}

.area-hotspot.filled i:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
}

.hotspot-content {
    background: #FFF;
    padding: 15px;
    border-radius: 3px;
    line-height: 1.3;
    
    font-size: 0.9rem;
}

.hotspot-content p {
    margin-bottom: 0;
}

.loader-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100%;
    background: #1f1f1f;
    z-index: 2;
}

.loader{
    position: absolute;
    left: 50%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 10px;
    transform-origin: bottom center;
    animation: rotate 3s linear infinite;
}

.load-circle{
    display: inline-block;
    background-color: #242424;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transform: scale(0);
    animation: grow 1.5s linear infinite;
    margin: -10px;

}
.load-circle:nth-child(2){
    background-color: #242424;
    animation-delay: 0.75s;
}
@keyframes rotate{
    to{
        transform: rotate(360deg);
    }
}
@keyframes grow{
    50%{
        transform: scale(1);
    }
}