﻿/*.donation {
    background: #00ffff;
    width: 800px;
    height: 100%;
    position: fixed;
    top: 64px;
    right: 0px;
    background-image: url("../images/din.jpeg");
    background-position: center;*/ /* Center the image */
/*background-repeat: no-repeat;*/ /* Do not repeat the image */
/*background-size: cover;
}*/

body {
    background-color: #07051C;
    color: white;
    font-family: 'Roboto';
    font-size: 22px;
}


.flex-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


.box-12 {
    width: 100% !important;
    box-sizing: border-box;
}

.box-10 {
    width: 80% !important;
    box-sizing: border-box;
}

.box-8{
    width: 66.6666666667% !important;
    box-sizing: border-box;
}

.box-4 {
    width: 33.3333333333% !important;
    box-sizing: border-box;
}


.content-web {
    /*right: 600px;
    position: fixed;*/
    max-width: 700px;
}


.flip-clock {
    /*text-align: center;*/
    perspective: 400px;
    margin: 20px auto;
}

    .flip-clock *,
    .flip-clock *:before,
    .flip-clock *:after {
        box-sizing: border-box;
    }

.flip-clock__piece {
    display: inline-block;
    margin: 0 5px;
}

.flip-clock__slot {
    font-size: 2vw;
}

.card {
    display: block;
    position: relative;
    padding-bottom: 0.72em;
    font-size: 6vw;
    line-height: 0.95;
}

@media only screen and (max-width: 1280px) {
    /* For mobile phones: */
    .card {
        font-size: 8vw;
    }
}

.card__top,
.card__bottom,
.card__back::before,
.card__back::after {
    display: block;
    height: 0.72em;
    color: #ccc;
    background: #8675BB;
    padding: 0.25em 0.25em;
    border-radius: 0.15em 0.15em 0 0;
    backface-visiblity: hidden;
    transform-style: preserve-3d;
    width: 1.8em;
    transform: translateZ(0);
}

.card__bottom {
    color: #FFF;
    position: absolute;
    top: 50%;
    left: 0;
    border-top: solid 1px #000;
    background: #5B399A;
    border-radius: 0 0 0.15em 0.15em;
    pointer-events: none;
    overflow: hidden;
}

    .card__bottom::after {
        display: block;
        margin-top: -0.72em;
    }

    .card__back::before,
    .card__bottom::after {
        content: attr(data-value);
    }

.card__back {
    position: absolute;
    top: 0;
    height: 100%;
    left: 0%;
    pointer-events: none;
}

    .card__back::before {
        position: relative;
        z-index: -1;
        overflow: hidden;
    }

.flip .card__back::before {
    animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
    animation-fill-mode: both;
    transform-origin: center bottom;
}

.flip .card__back .card__bottom {
    transform-origin: center top;
    animation-fill-mode: both;
    animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
}

@keyframes flipTop {

    0% {
        transform: rotateX(0deg);
        z-index: 2;
    }

    0%, 99% {
        opacity: 0.99;
    }

    100% {
        transform: rotateX(-90deg);
        opacity: 0;
    }
}

@keyframes flipBottom {

    0%, 50% {
        z-index: -1;
        transform: rotateX(90deg);
        opacity: 0;
    }

    51% {
        opacity: 0.99;
    }

    100% {
        opacity: 0.99;
        transform: rotateX(0deg);
        z-index: 5;
    }
}

.content {
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 30px;
}

.partner-item {
    width: 300px;
    border-radius: 10px;
    background: #5B399A;
    margin: 10px 20px 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item-mobile {
    width: 100%;
    border-radius: 10px;
    background: #5B399A;
    margin: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item-img {
    min-width: 185px;
    max-width: 280px;
    height: 140px;
}

.partner-item-img-mobile {
    min-width: 185px;
    max-width: 280px;
    height: 140px;
    margin: 10px;
}

.dino {
    width: 100%;
    /* height: 100vh;*/
    margin-top: 30px;
    margin-right: 20px;
    /*background: url("images/dyno.mp4") no-repeat;
    background-position: center center;*/ /* Center the image */
    /*background-repeat: no-repeat;*/ /* Do not repeat the image */
    /*background-size: cover;*/
    position: absolute;
    top: 10%;
    max-height: 250px;
    z-index: 10000;
    animation: zoom-in-zoom-out 37s ease infinite;
}

.dino-mobile {
    max-height: 450px;
    margin-top: 0px;
    margin-right: 0px;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(0.1, 0.1);
    }

    40% {
        transform: scale(2, 2);
        transform: translateX(-500px);
    }

    55% {
        transform: scale(4.7, 4.7);
    }

    99%, 100% {
        transform: rotateZ(0deg);
        transform: scale(0.1, 0.1);
        z-index: -1;
    }
}
.whiteContainer {
    background-color: white;
    color: black;
}