﻿body, html {
    height: 100%;
    background: #FFFFFF;
    font-family: 'Roboto', sans-serif;
}

    body::-webkit-scrollbar {
        background-color: transparent;
        width: 3px;
    }

    body::-webkit-scrollbar-thumb {
        background-color: #E5E5E5;
        border-radius: 2px;
        visibility: hidden;
    }

    body:hover::-webkit-scrollbar-thumb {
        visibility: visible;
    }

.container {
    display: block;
    position: relative;
    margin: 40px auto;
    height: auto;
    width: 500px;
    padding: 20px;
}

::selection {
    color: #fff;
    background: #6665ee;
}

.container-wrapper {
    width: 100%;
    margin-left: 30px;
    border: 2px solid #c1d9e7;
    padding: 5px;
}

.wrapper {
    width: 100%;
    border: 2px solid #c1d9e7;
    padding: 5px;
    margin-bottom: 10px;
}

    .wrapper h1 {
        font-size: 22px;
        font-weight: 600;
    }

    .wrapper .poll-area {
        margin: 20px 0 15px 0;
    }

    .wrapper img {
        width: 100%;
        height: auto;
    }

/*.poll-area label {
    display: block;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 8px 15px;
    border: 2px solid #e6e6e6;
    transition: all 0.2s ease;
}

    .poll-area label:hover {
        border-color: #ddd;
    }

label.selected {
    border-color: #6665ee !important;
}

label .row {
    display: flex;
    pointer-events: none;
    justify-content: space-between;
}

    label .row .column {
        display: flex;
        align-items: center;
    }

    label .row .circle {
        height: 19px;
        width: 19px;
        display: block;
        border: 2px solid #ccc;
        border-radius: 50%;
        margin-right: 10px;
        position: relative;
    }

label.selected .row .circle {
    border-color: #6665ee;
}

label .row .circle::after {
    content: "";
    height: 11px;
    width: 11px;
    background: #6665ee;
    border-radius: inherit;
    position: absolute;
    left: 2px;
    top: 2px;
    display: none;
}

.poll-area label:hover .row .circle::after {
    display: block;
    background: #e6e6e6;
}

label.selected .row .circle::after {
    display: block;
    background: #6665ee !important;
}

label .row span {
    font-size: 16px;
    font-weight: 500;
}

label .row .percent {
    display: none;
}

label .progress {
    height: 7px;
    width: 100%;
    position: relative;
    background: #f0f0f0;
    margin: 8px 0 3px 0;
    border-radius: 30px;
    display: none;
    pointer-events: none;
}

    label .progress:after {
        position: absolute;
        content: "";
        height: 100%;
        background: #ccc;
        width: calc(1% * var(--w));
        border-radius: inherit;
        transition: all 0.2s ease;
    }

label.selected .progress::after {
    background: #6665ee;
}

label.selectall .progress,
label.selectall .row .percent {
    display: block;
}

input[type="radio"],
input[type="checkbox"] {
    display: none;
}*/

.signature {
    /* margin-top: 250px;
        padding-top: 50px; */
    width: 100%;
}

    .signature p {
        text-align: center;
        font-family: Helvetica, Arial, Sans-Serif;
        font-size: 0.85em;
        color: #AAAAAA;
    }

    .signature .much-heart {
        display: inline-block;
        position: relative;
        margin: 0 4px;
        height: 10px;
        width: 10px;
        background: #AC1D3F;
        border-radius: 4px;
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

        .signature .much-heart::before,
        .signature .much-heart::after {
            display: block;
            content: '';
            position: absolute;
            margin: auto;
            height: 10px;
            width: 10px;
            border-radius: 5px;
            background: #AC1D3F;
            top: -4px;
        }

        .signature .much-heart::after {
            bottom: 0;
            top: auto;
            left: -4px;
        }

    .signature a {
        color: #AAAAAA;
        text-decoration: none;
        font-weight: bold;
    }


/* Styles for alert...
    by the way it is so weird when you look at your code a couple of years after you wrote it XD */

.alert {
    box-sizing: border-box;
    background-color: #BDFFE1;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 300;
    padding: 20px 40px;
    color: #333;
}

    .alert h2 {
        font-size: 22px;
        color: #232323;
        margin-top: 0;
    }

    .alert p {
        line-height: 1.6em;
        font-size: 18px;
    }

    .alert a {
        color: #232323;
        font-weight: bold;
    }

.btn {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    border-width: 0 !important;
    overflow: hidden;
    position: relative;
    user-select: none;
    padding: 9px 14px 8px 14px;
}

.blue {
    color: #fff;
    background-color: #A10101;
    border-color: #A10101;
}

.progress-info .progress {
    margin: 0;
    height: 4px;
    clear: both;
    display: block;
}

.progress-info .status {
    margin-top: 5px;
    font-size: 11px;
    color: #AAB5BC;
    font-weight: 600;
    text-transform: uppercase;
}

    .progress-info .status .status-title {
        float: left;
        display: inline-block;
    }

    .progress-info .status .status-number {
        float: right;
        display: inline-block;
    }

.progress-bar {
    display: block !important
}

.progress {
    background-color: grey
}

/*Checkbox*/
input[type="checkbox"] {
    display: none;
}

input + label {
    display: inline-block;
    border: 2px solid #ddd;
    padding: 8px 20px 8px 45px;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    width: 100%;
}

    input + label:after {
        position: absolute;
        content: '';
        opacity: 0.5;
        left: 20px;
        top: 11px;
        width: 18px;
        height: 18px;
        line-height: 1;
        border: 2px solid #0079bf;
        /*border-radius: 50%;*/
    }

    input + label:before {
        content: '';
        width: 6px;
        height: 14px;
        border: solid #0079bf;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
        position: absolute;
        left: 26px;
        top: 12px;
        opacity: 0;
    }

input:checked + label {
    box-shadow: 0px 4px 15px 0px rgba(34, 34, 34, 0.41);
    border-color: #fff;
    background: #fff;
    color: #333;
}

    input:checked + label:before {
        opacity: 1;
    }

    input:checked + label:after {
        opacity: 1;
        border-color: #0079bf;
    }
