@font-face {
    font-family: BalooBhaina2-Regular;
    src: url(../fonts/BalooBhaina2-Regular.ttf);
}

@font-face {
    font-family: DMSerifDisplay-Regular;
    src: url(../fonts/DMSerifDisplay-Regular.ttf);
}

@font-face {
    font-family: OpenSans-Regular;
    src: url(../fonts/OpenSans-Regular.ttf);
}

.black {
    color: black
}

.clearfix {
    *display: inline-block;
}

.clearfix:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

* {
    padding: 0;
    margin: 0;
    text-overflow: clip !important;
}

.fl {
    float: left;
}

.ml10 {
    margin-left: 10px;
}

.mt5 {
    margin-top: 5px;
}

.ml5 {
    margin-left: 5px;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
}

.logo {
    width: 20px;
    border-radius: 5px;
}

.logo-text {
    font-size: 15px;
    line-height: 34px;
    font-weight: 500;
    color: #105280;
}

.logo-text-2 {
    font-size: 15px;
    line-height: 34px;
    font-weight: 500;
    color: #fff;
}

.hide {
    display: none!important;
}


/* rgb(242, 229, 223) */

.content-wrapper {
    width: 100%;
    display: flex;
    height: 100%;
}

.rainbow-text {
    background-image: linear-gradient(to left, violet, indigo, rgb(74, 131, 255), green, orange, red);
    -webkit-background-clip: text;
    color: transparent;
}

.content {
    background-image: radial-gradient( #fff, #ccc);
    justify-content: center;
    margin: 20px;
    width: calc(100% - 40px);
    display: flex;
    height: calc(100% - 40px);
    position: relative;
    min-width: 330px;
    border-radius: 20px;
    box-shadow: 0 0 1px 1px #bbb inset;
    -moz-box-shadow: 0 0 1px 1px #bbb inset;
    -webkit-box-shadow: 0 0 1px 1px #bbb inset;
    align-items: center;
}

#magicanvas {
    position: absolute;
    left: 10px;
    font-family: "BalooBhaina2-Regular";
    top: 10px;
    color: slategray;
    display: flex;
    font-size: 18px;
    justify-content: center;
    align-items: center;
}

#top-logo {
    width: 30px;
    left: 50px;
    top: 8px;
}

#top-logo-text {
    margin: 0px 0 8px 5px;
}

a {
    text-decoration: none;
    color: #fff;
}

.item {
    height: 70px;
    justify-content: center;
    border-radius: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.item-name {
    font-size: 60px;
    line-height: 58px;
    min-width: 250px;
    text-align: left;
    font-family: "DMSerifDisplay-Regular";
    display: inline-block;
}

.download-ios {
    position: absolute;
    left: 12px;
    width: 45px !important;
}

.download-android {
    position: absolute;
    top: 70px;
    left: 12px;
    width: 45px !important;
}

.download-container {
    position: relative;
    width: 68px;
    height: 200px;
    left: 68px;
    border-radius: 15px 15px 0 0;
    background: rgb(224, 224, 224);
    top: -75px;
    z-index: 1;
    opacity: 0;
}

.item-desc {
    font-size: 15px;
    padding-left: 4px;
    text-align: left;
    font-family: "OpenSans-Regular";
    display: inline-block;
}

#rimember {
    /* background-image: linear-gradient(-180deg, rgb(226, 173, 255), rgb(135, 11, 197) 90%); */
}

.item img {
    width: 68px;
    margin-top: 8px;
    border-radius: 17px;
}

#oester {
    /* background-image: linear-gradient(-180deg, rgb(197, 252, 254), rgb(43, 127, 186) 90%); */
}

#nominee {
    /* background-image: linear-gradient(-180deg, rgb(254, 197, 243), rgb(185, 27, 97) 90%); */
}

@keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.show {
    animation-name: show;
    animation-duration: 2500ms;
    animation-fill-mode: forwards;
}

.hide {
    animation-name: show;
    animation-duration: 1000ms;
    animation-fill-mode: forwards;
    animation-direction: reverse;
}

.bounce-5-show {
    animation-name: bounce-5;
    animation-duration: 500ms;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.bounce-5-hide {
    animation-name: bounce-5;
    animation-duration: 200ms;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    animation-direction: reverse;
}

@keyframes bounce-5 {
    from {
        transform: scale(1, 1) translateY(0);
        opacity: 0;
    }
    to {
        transform: scale(1, 1) translateY(-10px);
        opacity: 1;
    }
}