
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.df-text-left {
    text-align: left;
}
.df-text-center {
    text-align: center;
}
.df-text-right {
    text-align: right;
}

.df_hideable {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.df-badge {
    position: relative;
    left: -1em;
    margin-left: 0;
    font-size: 0.4em;
    vertical-align: super;
    padding: 0.1em 0.5em 0.25em 0.5em;
    text-align: center;
    border-radius: 1em;
}
.df-big-badge {
    position: relative;
    margin-left: 0;
    font-size: 1em;
    padding: 0.1em 0.5em 0.25em 0.5em;
    text-align: center;
    border-radius: 0.25em;
}


.df-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}


.roundedRow {
    border: none;
    border-radius: 24px;
}

.roundedCell-left {
    padding: 0.5em 0px 0px 1.5em;
    border: none;
    border-bottom-left-radius: 24px;
    border-top-left-radius: 24px;
}

.roundedCell-right {
    padding: 0.5em 0px 0px 1.5em;
    border: none;
    border-bottom-right-radius: 24px;
    border-top-right-radius: 24px;
}

.fade-in-text {
    animation: fadeIn 1s;
    -webkit-animation: fadeIn 1s;
    -moz-animation: fadeIn 1s;
    -o-animation: fadeIn 1s;
}

.fade-in-image {
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

