/* General Typography */
h1, h2, h3, h4, h5, h6, p, input, .btn {
    font-family: "Open Sans", sans-serif !important;
    font-optical-sizing: auto !important;
    font-style: normal !important;
    font-variation-settings: "wdth" 100;
}

/* Paragraphs */
p {
    font-size: 1.25em;
    font-weight: 300;
}

/* Images */
img.vote-result-picture {
    height: 10em;
    object-fit: cover;
}

img.entry-picture {
    height: 30em;
    object-fit: cover;
    border-top-left-radius: 1.5em;
    border-top-right-radius: 1.5em;
}

figure {
    width: 100%;
    display: block;
}

figure > figcaption {
    margin: -3.5em auto 0 auto;
}

figure > figcaption > h2.figcaption-title-header {
    color: #fff !important;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
    margin: 0 0 1.1em 0;
}

figure > figcaption > h2 > span.figcaption-title-background {
    background: rgba(0, 0, 0, 0.70);
    border-radius: 3em;
    padding: 0.2em 1.35em;
}

/* Footer */
footer p {
    font-size: 1em;
}

/* Input Placeholder */
input::placeholder {
    font-weight: 300;
    opacity: 0.5;
    color: #cecece;
}

/* Form Control */
.form-control {
    border-radius: 2em;
    padding-left: 1em;
    font-size: 1.35em;
    text-align: center;
}

/* Text Shadow */
.text-shadow {
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
}

/* Selection */
.selection {
    transition: 200ms linear 50ms;
    border-radius: 1.5em;
    outline: 0.75em dashed transparent;
}

.selection.checked {
    background-color: #f8f8f8;
    box-shadow: 0.2em 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.2) !important;
    outline: 0.75em dashed #7ce87c;
}

/* Progress Bar */
.progress {
    height: 13em;
    border-radius: 0 6em 6em 0;
    overflow: hidden;
    background-color: #e0e0e0;
}

.progress-bar {
    border-radius: 0 3em 3em 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: width 0.6s ease;
    font-size: 3em;
    text-shadow: 3px 3px 2px rgba(0, 0, 0, 1);
    font-weight: bolder;
    /*min-width:25%;*/
}

.progress-bar-striped-default {
    background: repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0.15) 10px,
            transparent 10px,
            transparent 20px
    );
}

.progress-bar-yellow-striped {
    background: repeating-linear-gradient(
            45deg,
            rgb(185, 136, 0),
            rgb(122, 94, 0) 10px,
            rgb(255, 206, 77) 10px,
            rgb(255, 212, 118) 20px
    );
}

.progress-bar-orange-striped {
    background: repeating-linear-gradient(
            45deg,
            rgb(243, 111, 39),
            rgb(214, 92, 29) 10px,
            rgb(246, 140, 82) 10px,
            rgb(246, 177, 138) 20px
    );
}


/* Buttons */
.btn-schedule-demo {
    background-color: #025389;
    border-color: #025389;
}

.btn-schedule-demo:hover {
    background-color: #003366;
}

.btn-twitter, .btn-youtube, .btn-linkedin, .btn-facebook {
    height: 6.45em !important;
}

.btn-twitter {
    background-color: #55acee;
    border-color: #55acee;
}

.btn-twitter:hover {
    background-color: #3b8bc4;
}

.btn-youtube {
    background-color: #ed302f;
    border-color: #ed302f;
}

.btn-youtube:hover {
    background-color: #b71c1b;
}

.btn-linkedin {
    background-color: #0082ca;
    border-color: #0082ca;
}

.btn-linkedin:hover {
    background-color: #006699;
}

.btn-facebook {
    background-color: #3b5998;
    border-color: #3b5998;
}

.btn-facebook:hover {
    background-color: #2d4373;
}

.social-media-icons {
    display: block;
}

/** Typography **/
.display-7 {
    font-size: 2em;
}

.display-8 {
    font-size: 1.75em;
}

/** Breakpoints **/
@media only screen and (max-width: 575px) {
    .display-7 {
        font-size: 1.25em;
    }

    .display-8 {
        font-size: 1.05em;
    }

    .result-name-caption > h2 {
        font-size: 1.10em !important;
    }
}

@media only screen and (max-width: 875px) {
    .result-name-caption > h2 {
        font-size: 1.35em;
    }
}

@media only screen and (max-width: 1000px) {
    .progress {
        border-radius: 0 0 0 0;
    }

    .progress-bar {
        border-radius: 0 0 0 0;
    }
}

@media (min-width: 576px) {
    .display-7 {
        font-size: 1.75em;
    }

    .display-8 {
        font-size: 1.45em;
    }

    .btn-schedule-demo {
        max-width: 97%;
    }
}

@media (min-width: 768px) {
    .btn-schedule-demo {
        max-width: 73%;
    }

    .social-media-icons {
        max-width: 73%;
    }

    .progress-bar {
        font-size: 3.5em;
        text-shadow: 3px 3px 2px rgba(0, 0, 0, 1);
    }
}

@media (min-width: 992px) {
    .btn-schedule-demo {
        max-width: 100%;
    }

    .social-media-icons {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .display-7 {
        font-size: 2em;
    }

    .display-8 {
        font-size: 1.75em;
    }
}

@media (min-width: 1400px) {
}


