﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

body {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
}

/*@media screen and (min-width: 992px) {*/
/*    .global-actions {*/
/*        display: none !important;*/
/*    }*/
/*}*/

@media (pointer: coarse) {
    .global-actions {
        display: none !important;
    }
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

a:hover {
    cursor: pointer;
}

.whitetext {
    color: whitesmoke;
}

.navbar-main-menu {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.navbar-main-menu-on-top {
    z-index: 1000;
}

.loader {
    overflow: hidden;
    animation-delay: 1s;
}

.background-0 {
    background: #C87D26;
}

.background-1 {
    background: #569D99;
}

.background-2 {
    background: #740039;
}

.background-3 {
    background: #839FC5;
}

.background-4 {
    background: #6A4F76;
}

.background-5 {
    background: #57636D;
}

.background-6 {
    background: #6D5242;
}

.background-7 {
    background: #4F5051;
}

.background-0,
.background-1,
.background-2,
.background-3,
.background-4,
.background-5,
.background-6,
.background-7 {
    transition: all 400ms ease;
}

/* class created only for a better preview*/
.stage {
    position: absolute;
    opacity: 1;
    max-width: 600px;
    top: 50%;
    left: 50%;
    width: 90%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -45%);
}

.stage.hidden {
    opacity: 0;
    transition: all 400ms ease;
}


h1, h2, h3 {
    margin: 0;
}

h1 {
    font-size: 32px;
    font-weight: 400;
}

h2 {
    font-size: 24px;
    font-weight: 100;
    color: #FFF;
    text-align: center;
}

h3 {
    font-size: 18px;
    font-weight: 300;
    margin-top: 10px;
}

.title {
    width: 100%;
    padding-bottom: 30px;
    text-align: center;
    font-weight: 400;
    font-size: 22px;
    color: #fff;
}

.card-content {
    color: #fff;
    position: relative;
}

.card-loader {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-hidden-word {
    color: transparent;
}

.card-image {
    width: 100%;
    height: 100%;
}

.card-image img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 330px;
}

.card-titles {
    position: absolute;
    bottom: 3px;
    background-color: rgba(65, 65, 65, 0.8);
    border-radius: 10px 10px 10px 10px;
    padding: 10px 15px;
}

.card-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 25px 35px;
    height: 100px;
}

.popular-destinations-text {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    width: 100%;
    min-width: 110px;
    text-align: center;
}

.popular-destinations-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
}

.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    margin-left: 8px;
}

.col-padding {
    padding: 1px;
}

.circle img {
    border-radius: 50%
}

/* global actions buttons*/
.global-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 200px;
}

.final-state {
    position: absolute;
    opacity: 1;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: all 400ms ease;
}

/*------ CSS Use Case Example END ------*/

/*----- Stacked Cards component css START -----*/
body {
    overflow-x: hidden;
}

.no-transition {
    -webkit-transition: none ! important;
    transition: none ! important;
}

.stackedcards-overflow {
    overflow-y: hidden !important;
}

.stackedcards {
    position: relative;
}

.stackedcards * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.stackedcards--animatable {
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
}

.stackedcard {
    background: #fff; /* set card background background */
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.30);
}

.stackedcard,
.stackedcards-overlay {
    height: 100%;
    width: 100%;
}

.stackedcards-container {
    margin-bottom: 20px;
}

.stackedcards .stackedcards-container > *,
.stackedcards-overlay {
    position: absolute;
    will-change: transform, opacity;
    top: 0;
    border-radius: 10px;
}

.stackedcards-overlay.left > div,
.stackedcards-overlay.right > div,
.stackedcards-overlay.top > div {
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.stackedcards-overlay.left,
.stackedcards-overlay.right,
.stackedcards-overlay.top {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    opacity: 0;
    top: 0;
    height: 100%;
}

.stackedcards-overlay.top,
.stackedcards-overlay.right,
.stackedcards-overlay.left {
    background: #fff;
    z-index: 8;
}

.stackedcards-overlay.left:empty,
.stackedcards-overlay.right:empty,
.stackedcards-overlay.top:empty {
    display: none !important;
}

.stackedcards-overlay-hidden {
    display: none;
}

.stackedcards .stackedcards-container > :nth-child(1) {
    position: relative;
    display: block;
}

.not-visible {
    visibility: hidden;
}

.version {
    position: fixed;
    right: 0;
    bottom: 0;
    text-align: right;
    padding-right: 10px;
}

.answered {
    cursor: default;
}

.unanswered {
    cursor: pointer;
}

/*update snackbar begin*/
#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    cursor: default;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s;
    animation: fadein 0.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

/*update snackbar end*/