html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    background-color: #fff;
    margin-bottom: 60px;
    font-family: Poppins, sans-serif;
}

ul > li {
    list-style-type: circle;
}

    ul > li.selected {
        list-style-type: disc;
    }

#footer {
    position: absolute;
    display: block;
    align-items: center;
    left: 0;
    right: 0;
    bottom: 10px;
    border-top: 1px solid #e5e5e5;
    padding-top: 10px;
    text-align: center;
    max-width: 750px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

p.error {
    color: #f00;
}

span.error {
    font-weight: 600;
}

.tandc {
    font-style: italic;
    font-size: small;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

textarea {
    display: block;
    margin-bottom: 10px;
    border-radius: 20px;
    padding: 15px;
}

.w100 {
    width: 100%;
}