@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,400i,700");
@import url("https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

body {
    font-family: Raleway, sans-serif;
}

div.pre-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: .5em 1em;

}

header {
    /*background-color: black;*/
    text-align: center;
    margin-bottom: 3rem;
}

header img.ideathon {
    width: 100%;
    max-width: 800px;
    margin-bottom: -7px;
    /*position: absolute;*/
    /*top: -9999px;*/
    /*bottom: -9999px;*/
    /*left: -9999px;*/
    /*right: -9999px;*/
    /*margin: auto;*/
}



main p {
    margin: .5em 1em;
    color: #555;
    font-size: 1.5em;
    font-weight: 600;
    text-align: center;
}

.main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.radio-buttons {
    width: 100%;
    margin: 2em auto;
    text-align: center;
}

.custom-radio input {
    display: none;
}

.radio-btn {
    margin: 10px;
    width: 200px;
    height: 250px;
    border: 3px solid transparent;
    display: inline-block;
    border-radius: 10px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 20px #c3c3c3bd;
    cursor: pointer;
    font-size: 1.3em;
}

.radio-btn>i {
    color: #ffffff;
    background-color: #222;
    font-size: 20px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) scale(2);
    border-radius: 50px;
    padding: 3px;
    transition: 0.5s;
    pointer-events: none;
    opacity: 0;
}

.radio-btn .option-icon {
    width: 150px;
    height: 150px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-btn .option-icon img {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 0 8px 8px white inset;

}


.radio-btn .option-icon .option-title {
    color: #555;
    font-weight: bold;
    letter-spacing: 1px;
}

.custom-radio input:checked+.radio-btn {
    border: 2px solid #222;
    background: #555;

}

.custom-radio input:checked+.radio-btn .option-title {
    color: white;
}

.custom-radio input:checked+.radio-btn>i {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}



.option-emoji {
    display: block;
    font-size: 400%;
    margin-bottom: 1rem;
}


button {

    font-weight: 600;
    font-size: 1.5em;
    color: #fff;
    background: linear-gradient(90deg, #007336 0%, #7e0385 100%);
    padding: 30px 150px;
    border: solid #0066cc 2px;
    box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
    border-radius: 9px;
    transition: 1000ms;
    transform: translateY(0);
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;

}

.button:hover {

    transition: 1000ms;
    padding: 10px 50px;
    transform: translateY(-0px);
    background: linear-gradient(90deg, #7e0385 100%, #007336 0%);
    color: #e1ff00;
    border: none;
}

button:disabled {
    background: none;
    background-color: #EEE;
    color: black;
}

footer {
    text-align: center;
}

footer img {
    width: 80%;
    max-width: 515px;
}

.qr-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.qr-list .answered{

}
.qr-list img.qr-only{
    /*width: 3em;*/
}
.qr-banner{
    width: 40%;
    padding: 0;
    display: flex;
    align-items: center;
}

.qr-list p {
    font-size: initial;
    margin: 0 0 1em 0;
}